what is stdclass object in php code example
Example 1: php stdclass
//create a person object in PHP
$person=new stdClass();
$person->firstName="Chuck";
$person->lastName="Bartowski";
$person->age=27;
print_r($person);
Example 2: php new stdClass object
new stdClass()