show/hide this revision's text 2 fixed link problem

stdClass is the "link textbase class" or "superclass" for all php objects aka classes.

If you cast a variable as a class, stdClass is the type that will be displayed. For example:

$foo = 'bar'; // create a string
$myObject = (object)$foo; // cast as object
print_r($myObject);

This small PHP program will output:

stdClass Object ( [scalar] => bar )

See also: Objects (PHP Manual)

show/hide this revision's text 1

stdClass is the "link textbase class" or "superclass" for all php objects aka classes.

If you cast a variable as a class, stdClass is the type that will be displayed. For example:

$foo = 'bar'; // create a string
$myObject = (object)$foo; // cast as object
print_r($myObject);

This small PHP program will output:

stdClass Object ( [scalar] => bar )

See also: Objects (PHP Manual)