vote up 1 vote down star

I have search in Google but couldn't find an answer. Please define what is stdClass.

flag

61% accept rate

3 Answers

vote up 5 vote down check

stdClass is php's generic empty class, kind of like Object in Java or object in Python (Edit: but not actually used as universal base class, tx @Ciaran for pointing this out). Useful for anonymous objects, dynamic properties, &c -0- see http://www.krisjordan.com/2008/11/27/dynamic-properties-in-php-with-stdclass/ for example.

BTW, mysql has absolutely nothing to do with it -- I suggest you change your tags!

link|flag
maybe he used mysql_fetch_object. that creates an instance of stdlcass if im not mistaken. – Galen May 31 at 5:58
2  
It's not quite a base class in the way Java's Object is, see my answer below. – Ciaran McNulty Jun 14 at 11:14
1  
@Ciaran, you're right, editing my answer accordingly. – Alex Martelli Jun 14 at 16:53
vote up 15 vote down

Despite what the other two answers say, stdClass is not the base class for objects in PHP. This can be demonstrated fairly easily:

class Foo{}
$foo = new Foo();
echo ($foo instanceof stdClass)?'Y':'N';
// outputs 'N'

stdClass is instead just a generic 'empty' class that's used when casting other types to objects. I don't believe there's a concept of a base object in PHP

link|flag
3  
This is the real answer. – Ionut G. Stan Jun 14 at 11:21
1  
So important it should be said again. This is the real answer. – jmucchiello Jun 14 at 11:45
^ I'm with these guys. – xenon Jun 14 at 17:27
vote up -2 vote down

stdClass is the "base 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)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.