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, 1927🔥, 0💬
Popular Posts:
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximu...
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
Can Multiple Paragraphs Be Included in a List Item? Yes. You can include multiple paragraphs in a si...
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CL...
How to install .NET Framework in Visual Studio Community 2017? I have the Visual Studio Installer in...