I have search in Google but couldn't find an answer. Please define what is stdClass.
|
|
BTW, mysql has absolutely nothing to do with it -- I suggest you change your tags! |
||||||||||
|
|
|
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 |
||||||||||
|
|
|
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:
This small PHP program will output:
See also: Objects (PHP Manual) |
|||
|
|
