What Is the Scope of a Variable Defined outside a Function

Q

What Is the Scope of a Variable Defined outside a Function? - PHP Script Tips - Creating Your Own Functions

✍: FYIcenter.com

A

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

2007-04-24, 4894👍, 0💬