I searched about stdClass in Google, but couldn't find an answer.
Please define what stdClass is.
|
feedback
|
|
| |||||||||||||||
feedback
|
|
Despite what the other two answers say, stdClass is not the base class for objects in PHP. This can be demonstrated fairly easily:
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 | |||||||||||||||||||||
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
another usage of stdclass is when using casting other types to object: Example #2
| |||||||
|
feedback
|
|
Likewise,
yields a stdClass object - auto casted I found this out today by misspelling:
Cool! | ||||
|
feedback
|
|
Also worth noting, an stdClass object can be created from the use of json_decode() as well. | |||
|
feedback
|
|
This URL will help you Predefined Standard Class | |||
|
feedback
|