fork download
  1. <?php
  2. $obj = (object) array();
  3. $obj->foo = 10;
  4. var_dump($obj);
  5.  
  6. $o = new stdClass();
  7. $o->foo = 'bar';
  8.  
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
object(stdClass)#1 (1) {
  ["foo"]=>
  int(10)
}
object(stdClass)#2 (1) {
  ["foo"]=>
  string(3) "bar"
}