I searched about stdClass in Google, but couldn't find an answer.

Please define what stdClass is.

link|improve this question

61% accept rate
feedback

6 Answers

up vote 82 down vote accepted

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.

link|improve this answer
1  
maybe he used mysql_fetch_object. that creates an instance of stdlcass if im not mistaken. – Galen May 31 '09 at 5:58
16  
It's not quite a base class in the way Java's Object is, see my answer below. – Ciaran McNulty Jun 14 '09 at 11:14
1  
@Ciaran, you're right, editing my answer accordingly. – Alex Martelli Jun 14 '09 at 16:53
I hope you know that object isn't the derived class of "all" objects in Python... At least, not until you are forced to derive from object in Python 3.0 – monokrome Sep 21 '10 at 23:35
feedback

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|improve this answer
68  
This is the real answer. – IonuČ› G. Stan Jun 14 '09 at 11:21
36  
So important it should be said again. This is the real answer. – jmucchiello Jun 14 '09 at 11:45
4  
^ I'm with these guys. – xenon Jun 14 '09 at 17:27
9  
Yay for the ugliness of PHP! :) – Lester Cheung May 19 '10 at 1:57
2  
real answer ! yay ! – Stewie Sep 27 '10 at 20:44
show 6 more comments
feedback

it is Predefined Classes since PHP 5. Simply Say it is available class provided when you want to create an object, and assign data to it, without having to formally define a class: Example #1

<?php

$myobject = new stdClass;
$myobject->nid = 20;
$myobject->title = "Something";
$myobject->value = "Something else";
?>

another usage of stdclass is when using casting other types to object: Example #2

<?php
 $arr = array(
    "nid"=> 20,
    "title" => "Something",
    "value" => "Something else"
);
$node = (object) $arr;
var_dump($node);
?>
link|improve this answer
+1 one for simplicity of explanation – Paul Connolly Nov 26 '11 at 9:01
Then what is the base class? – shiplu.mokadd.im Feb 3 at 23:33
@Shiplu The base class is is_object($var) – Petah Feb 27 at 6:47
feedback

Likewise,

$myNewObj->setNewVar = 'newVal'; 

yields a stdClass object - auto casted

I found this out today by misspelling:

$GLOBASLS['myObj']->myPropertyObj->myProperty = 'myVal';

Cool!

link|improve this answer
But this should raise a E_NOTICE – Petah Feb 27 at 6:45
feedback

Also worth noting, an stdClass object can be created from the use of json_decode() as well.

link|improve this answer
feedback

This URL will help you Predefined Standard Class

link|improve this answer
This answer should be pushed right to the top. Read the docs, Luke! – dotancohen Apr 9 at 19:42
feedback

Your Answer

 
or
required, but never shown

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