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)
