What is stdClass in PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T11:54:38Zhttp://stackoverflow.com/feeds/question/931407http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/931407/what-is-stdclass-in-php1What is stdClass in PHP?Keira Nighly2009-05-31T05:49:01Z2009-06-14T16:56:05Z
<p>I have search in Google but couldn't find an answer. Please define what is stdClass.</p>
http://stackoverflow.com/questions/931407/what-is-stdclass-in-php/931419#9314195Answer by Alex Martelli for What is stdClass in PHP?Alex Martelli2009-05-31T05:55:50Z2009-06-14T16:54:34Z<p><code>stdClass</code> is php's generic empty class, kind of like <code>Object</code> in Java or <code>object</code> 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 <a href="http://www.krisjordan.com/2008/11/27/dynamic-properties-in-php-with-stdclass/" rel="nofollow">http://www.krisjordan.com/2008/11/27/dynamic-properties-in-php-with-stdclass/</a> for example.</p>
<p>BTW, mysql has absolutely nothing to do with it -- I suggest you change your tags!</p>
http://stackoverflow.com/questions/931407/what-is-stdclass-in-php/931429#931429-2Answer by artlung for What is stdClass in PHP?artlung2009-05-31T06:04:24Z2009-05-31T06:10:39Z<p>stdClass is the "<a href="http://en.wikipedia.org/wiki/Base%5Fclass" rel="nofollow">base class</a>" or "superclass" for all php objects aka classes.</p>
<p>If you cast a variable as a class, stdClass is the type that will be displayed. For example:</p>
<pre><code>$foo = 'bar'; // create a string
$myObject = (object)$foo; // cast as object
print_r($myObject);
</code></pre>
<p>This small PHP program will output:</p>
<pre><code>stdClass Object ( [scalar] => bar )
</code></pre>
<p>See also: <a href="http://us.php.net/manual/en/language.types.object.php" rel="nofollow">Objects (PHP Manual)</a></p>
http://stackoverflow.com/questions/931407/what-is-stdclass-in-php/992654#99265415Answer by Ciaran McNulty for What is stdClass in PHP?Ciaran McNulty2009-06-14T11:13:47Z2009-06-14T11:13:47Z<p>Despite what the other two answers say, stdClass is <strong>not</strong> the base class for objects in PHP. This can be demonstrated fairly easily:</p>
<pre><code>class Foo{}
$foo = new Foo();
echo ($foo instanceof stdClass)?'Y':'N';
// outputs 'N'
</code></pre>
<p>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</p>