Variables

General

A variable is a named area of data storage that contains a PHP value. A variable is represented by a VSlot. A variable is created by assigning a value to it. A variable is destroyed by unsetting it, either by an explicit call to the unset statement, or by the Engine. The intrinsic isset tests if a given variable exists and is not set to NULL. If a variable, which is not defined so far, is used in an expression, then different strategies are applied which determine whether the variable is defined implicitly or a substitution value is used instead and whether a notice is emitted or not. The strategies depend on the kind of the variable as well as on the context where the undefined variable is being used. The strategies are elaborated in the sub-sections of the different kinds of variables below.

Variables have names. Distinct variables may have the same name provided they are in different scopes.

A constant is a variable that, once initialized, its value cannot be changed.

Based on the context in which it is declared, a variable has a scope and a storage duration.

A superglobal variable is a global variable that is accessible in all scopes without the need for a global-declaration.

The following kinds of variable may exist in a script:

Kinds of Variables

Constants

Syntax

See constants section.

Constraints

Outside of a class or interface, a c-constant can be defined only at the top level of a script.

Semantics

See constants and class constants.

A constant defined outside of a class or interface is a superglobal. A constant has static storage duration and is a non-modifiable lvalue.

Undefined Constants

Undefined constants are not defined implicitly – forward usages of constants are also classified as undefined constants here. A distinction between class/interface constants and top level constants is made.

For top level constants: For unqualified usages, the name of the undefined constant (as string) is used as substitution value. Moreover, a warning is emitted stating that the corresponding constant was undefined. For qualified usages, an exception of type Error is thrown.

For class/interface constants: An exception of type Error is thrown, stating that the corresponding constant was undefined.

Examples

const MAX_HEIGHT = 10.5;        // define two c-constants
const UPPER_LIMIT = MAX_HEIGHT;
define('COEFFICIENT_1', 2.345); // define two d-constants
define('FAILURE', TRUE);

// Examples of undefined constants
echo NON_EXISTING_CONSTANT;     // uses 'NON_EXISTING_CONSTANT' as substitution
                                // value and emits a warning stating that the
                                // constant was undefined.

echo NON_EXISTING_CONSTANT;     // same here, the constant is still undefined
                                // and 'NON_EXISTING_CONSTANT' is used as
                                // substitution value and a warning is emitted
                                // again.

echo MAX_LENGTH;                // same here due to a forward usage
                                // (MAX_LENGTH is defined further below).
                                // 'MAX_LENGTH' is used as substitution
                                // value and a warning is emitted.

echo \NON_EXISTING_CONSTANT;    // qualified use of undefined constant. Throws
                                // an exception of type Error.

const MAX_LENGTH = 7.5;

echo Exception::MESSAGE;        // undefined class constant. Throws an exception
                                // of type Error.

Local Variables

Syntax

See Semantics below.

Semantics

Except for a parameter, a local variable is never defined explicitly; instead, it is created when it is first assigned a value. A local variable can be assigned to as a parameter in the parameter list of a function definition or inside any compound statement. It has function scope and automatic storage duration. A local variable is a modifiable lvalue.

Examples

function doit($p1)  // assigned the value TRUE when called
{
  $count = 10;
    ...
  if ($p1)
  {
    $message = "Can't open master file.";
    ...
  }
  ...
}
doit(TRUE);
// -----------------------------------------
function f()
{
  $lv = 1;
  echo "\$lv = $lv\n";
  ++$lv;
}
for ($i = 1; $i <= 3; ++$i)
  f();

Unlike the function static equivalent, function f outputs “$lv = 1” each time.

See the recursive function example in storage duration section.

Undefined Local Variables

A distinction is made based on the context where an undefined local variable is used.

byVal Context

PHP does not implicitly define an undefined local variable and uses NULL as substitution value instead. Furthermore, a notice is emitted, stating that the corresponding variable was undefined, unless the variable is used

  1. as the single expression in a statement.
  2. as argument of isset.
  3. as argument of empty.
  4. as the left hand side of the coalesce operator ??.

Since undefined local variables are not defined implicitly, they stay undefined. In general, a VSlot is not created for undefined variables used in a byValue context.

byRef Context

If the undefined variable is used in a byRef context then PHP defines the variable implicitly. Hence, a VSlot is created for it and NULL is stored in it. A notice is not emitted in such a case.

Examples of Undefined Variables

Following some examples which outlines the behaviour with undefined local variables.

// The following 4 cases outline the exceptions of undefined variables
// used in byValue context where no notice is emitted.
$a;
isset($a);
empty($a);
$a ?? 'default Value';

$a = 1;    // a VSlot for $a was created and 1 was assigned.

$b = $c;   // a VSlot for $b was created and the value of $c was assigned to
           // it. But because $c in turn was undefined, NULL was used as
           // substitution value instead. In addition, a notice was
           // emitted stating that $c was undefined.

$d = $c;   // a VSlot for $d was created and the value of $c was assigned to
           // it. But since $c is still undefined, NULL was used as
           // substitution value instead and another notice was emitted
           // stating $c was undefined.

$d + $e;   // $e was undefined and `NULL` was used as substitution value
           // instead. In addition, a notice was emitted stating that
           // $e was undefined.

$f = &$g;  // a VSlot for $f was created which points to the VSlot of $g.
           // $g in turn was undefined but was defined implicitly because the
           // assignment was byRef. Thus a VSlot for $g was created and `NULL`
           // was assigned to it. A notice was *not* emitted.

$h = $g;   // a VSlot for $h was created and the value of $g (which is NULL)
           // was assigned to it.

function foo($x){}

foo($i);   // $i was undefined and NULL was used as substitution value
           // instead. In addition, a notice was emitted stating that $i
           // was undefined.

$j = $i;   // a VSlot for $j was created and the value of $i was assigned to
           // it. But because $i in turn was still undefined, NULL was used
           // as substitution value instead. Another notice was emitted
           // stating that $i was undefined.

function bar(&$x){}

bar($k);   // $k was undefined but implicitly defined because it was passed to
           // the function bar byRef. Thus a VSlot for $k was created and
           // NULL was assigned to it. A notice was *not* emitted.

$l = $k;   // a VSlot for $l was created and the value of $k (which is NULL)
           // was assigned to it.

Array Elements

Syntax

Arrays are created using the array-creation operator. At the same time, one or more elements may be created for that array. New elements are inserted into an existing array via the simple-assignment operator in conjunction with the subscript operator []. Elements can be removed by calling the unset statement.

Semantics

The scope of an array element is the same as the scope of that array’s name. An array element has allocated storage duration.

Undefined Array Elements

Similar to undefined local variables, a distinction is made based on the context where an undefined array element is used.

byValue Context

If one tries to access an undefined array element, then NULL is used as substitution value and a notice is emitted, stating that an undefined offset was used. The undefined offset is not created implicitly and a subsequent access results in another notice.

byRef Context

PHP defines implicitly an undefined array element when it is accessed byRef, a VSlot for the corresponding undefined offset is created and NULL is assigned to it. A notice is not emitted in this case.

Examples

$colors = ["red", "white", "blue"]; // create array with 3 elements
$colors[] = "green";                // insert a new element

echo $colors[100];      // element with offset 100 is undefined and NULL is
                        // used as substitution value. Moreover, a notice is
                        // emitted stating that an undefined offset was used.

echo $colors[100];      // element with offset 100 is still undefined and NULL
                        // is used as substitution value instead. Another
                        // notice is emitted.

$b = &$colors[100];     // a VSlot for $b is created which points to the array
                        // element with the offset 100. An array element with
                        // offset 100 was undefined but implicitly defined
                        // because the assignment is byRef. Thus a VSlot for
                        // the array element with offset 100 is created and
                        // NULL is assigned to it. A notice is *not* emitted.

Function Statics

Syntax

function-static-declaration:
   static   static-variable-name-list   ;

static-variable-name-list:
   static-variable-declaration
   static-variable-name-list   ,   static-variable-declaration

static-variable-declaration:
   variable-name   function-static-initializeropt

function-static-initializer:
   =   constant-expression

Constraints

A function static must be defined inside a function.

Semantics

A function static may be defined inside any compound statement. It is a modifiable lvalue.

A function static has function scope and static storage duration.

The value of a function static is retained across calls to its parent function. Each time the function containing a function static declaration is called, that execution is dealing with an alias to that static variable. If that alias is passed to the unset statement, only that alias is destroyed. The next time that function is called, a new alias is created.

Undefined Function Statics

Function statics are explicitly defined and thus cannot be undefined.

Examples

function f()
{
  static $fs = 1;
  echo "\$fs = $fs\n";
  ++$fs;
}
for ($i = 1; $i <= 3; ++$i)
  f();

Unlike the local variable equivalent, function f outputs “$fs = 1”, “$fs = 2”, and “$fs = 3”, as $fs retains its value across calls.

Be also aware that declaring a function static can hide a local variable and/or a global variable with the same name. The value of the local or global variable is not taken over as initial value of the function static. Subsequent modifications of the variable only modify the function static and do not affect the local nor the global variable. An example:

function f(){
  $fs = 10;             // assign 10 to the local variable $fs
  static $fs;           // define a function static with name $fs
  echo "\$fs = $fs\n";  // $fs =
  $fs = 5;              // assign 5 to the function static $fs (local variable is not modified)
  echo "\$fs = $fs\n";  // $fs = 5
  global $fs;           // define a global variable with name $fs
  echo "\$fs = $fs\n";  // $fs =
  $fs = 3;              // assign 3 to the global variable $fs (function static and local variable is not modified
  echo "\$fs = $fs\n";  // $fs = 3
  static $fs;
  ++$fs;                // increment function static $fs
  echo "\$fs = $fs\n";  // $fs = 6
}
f();
echo "\$fs = $fs\n";    // $fs = 3

Global Variables

Syntax

global-declaration:
   global   variable-name-list   ;

variable-name-list:
   simple-variable
   variable-name-list   ,   simple-variable

Semantics

A global variable is never defined explicitly; instead, it is created when it is first assigned a value. That may be done at the top level of a script, or from within a block in which that variable has been declared (imported, that is) using the global keyword.

One of the predefined variables, $GLOBALS is a superglobal array whose elements’ key/value pairs contain the name and value, respectively, of each global variable currently defined. As such, a global variable gv can be initialized with the value v, and possibly be created, using the following form of assignment:

$GLOBALS['gv'] = v

As $GLOBALS is a superglobal, gv need not first be the subject of a global-declaration.

A global variable has global scope and static storage duration. A global variable is a modifiable lvalue.

When a global value is imported into a function, each time the function is called, that execution is dealing with an alias to that global variable. If that alias is passed to the unset statement, only that alias is destroyed. The next time that function is called, a new alias is created with the current value of the global variable.

Undefined Global Variables

The same rules as for undefined local variables apply.

Examples

$colors = array("red", "white", "blue");
$GLOBALS['done'] = FALSE;
// -----------------------------------------
$min = 10; $max = 100; $average = NULL;
global $min, $max;         // allowed, but serves no purpose
function compute($p)
{
  global $min, $max;
  global $average;
  $average = ($max + $min)/2;

  if ($p)
  {
    global $result;
    $result = 3.456;  // initializes a global, creating it, if necessary
  }
}
compute(TRUE);
echo "\$average = $average\n";  // $average = 55
echo "\$result = $result\n";  // $result = 3.456
// -----------------------------------------
$g = 100;
function f()
{
  $v = 'g';
  global $$v;          // import global $g
  ...
}

Be also aware that declaring a variable global can hide a local variable and/or a function static with the same name. See static variables section for an example.

Instance Properties

These are described in class instance properties section. They have class scope of the defining class and allocated storage duration. Access to the instance properties is governed by visibility rules.

Static Properties

These are described in class static properties section. They have class scope of the defining class and static storage duration. Access to the static properties is governed by visibility rules.

Class and Interface Constants

These are described in class constants section and interface constants section. They have class scope of the defining class or interface and static storage duration.

Predefined Variables

The following global variables are available to all scripts:

Variable NameDescription
$argcint; The number of command-line arguments passed to the script. This is at least 1. (See $argv below). This may not be available in non-command-line builds of the Engine.
$argvarray; An array of $argc elements containing the command-line arguments passed to the script as strings. Each element has an int key with the keys being numbered sequentially starting at zero through $argc-1. $argv[0] is the name of the script. It is implementation-defined as to how white space on command lines is handled, whether letter casing is preserved, which characters constitute quotes, or how $argv[0]’s string is formatted. As to how command-line arguments are defined, is unspecified. This may not be available in non-command-line builds of the Engine.
$_COOKIEarray; The variables passed to the current script via HTTP Cookies.
$_ENVarray; An array in which the environment variable names are element keys, and the environment variable value strings are element values. As to how an environment variable is defined, is unspecified.
$_FILESarray; The items uploaded to the current script via the HTTP POST method.
$_GETarray; The variables passed to the current script via the URL parameters.
$GLOBALSarray; A superglobal array containing the names of all variables that are currently defined in the global scope of the script. The variable names are the element keys, and the variable values are the element values.
$_POSTarray; The variables passed to the current script via the HTTP POST method.
$_REQUESTarray; By default contains the contents of $_COOKIE, $_GET, and $_POST. The exact contents may depend on the Engine settings.
$_SERVERarray; Server and execution environment information, such as headers, paths, and script locations. The entries in this array are taken from the Engine environment, e.g. the webserver.
$_SESSIONarray; The session variables available to the current script. This global is defined only if a session is active.

All $_* variables above are superglobals. The exact set of the variables available may depend on the implementation, the Engine build and the environment.