A variable defined outside any functions in main script body is called global variable. However, a global variable is not really accessible globally any in the script. The scope of global variable is limited to all statements outside any functions. So you can not access any global variables inside a function. Here is a PHP script on the scope of global variables:<?php?>$login = "fyicenter";function myLogin() { print("Defined inside the function? ". isset($login)."\n");}myLogin();print("Defined outside the function? ". isset($login)."\n");?>This script will print:Defined inside the function?Defined outside the function? 1
PHP
Topic: Functions
What Is the Scope of a Variable Defined outside a Function?
Browse random answers:
What is a Function?
How To Define a User Function?
How To Invoke a User Function?
How To Return a Value Back to the Function Caller?
How To Pass an Argument to a Function?
How Variables Are Passed Through Arguments?
How To Pass Variables By References?
Can You Define an Argument as a Reference Type?
Can You Pass an Array into a Function?
How Arrays Are Passed Through Arguments?
How To Pass Arrays By References?
Can You Define an Array Argument as a Reference Type?
How To Return an Array from a Function?
What Is the Scope of a Variable Defined in a Function?
What Is the Scope of a Variable Defined outside a Function?
How To Access a Global Variable inside a Function?
How Values Are Returned from Functions?
How To Return a Reference from a Function?
How To Specify Argument Default Values?
How To Define a Function with Any Number of Arguments?
How is it possible to return a value from a function?
What is the function func_num_args() used for?
Explain about Functions in PHP?