Tools, FAQ, Tutorials:
Global Variables in Main Script in PHP
What Is the Scope of a Variable Defined outside a Function? in PHP?
✍: FYIcenter.com
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
⇒ Accessing Global Variables inside a Function in PHP
⇐ Local Variables in a Function in PHP
2016-12-08, ∼2251🔥, 0💬
Popular Posts:
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...
How To Open Standard Output as a File Handle in PHP? If you want to open the standard output as a fi...
How to create a navigation file like navigation.xhtml for an EPUB 3.0 book? At least one navigation ...
Where to find tutorials on RSS specifications? I want to learn it to describe my API services. Here ...