7.12.3. Discussion
Just as array( ) returns an empty array, creating
an object of the type stdClass provides you with
an object without properties or methods.
Like objects belonging to other classes, you can create new object
properties, assign them values, and check those properties:
$guss = new stdClass;
$guss->location = 'Essex';
print "$guss->location\n";
$guss->location = 'Orchard';
print "$guss->location\n";
Essex
Orchard