fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $a = (object) [0 => 'aaa'];
  5. var_dump($a, $a->{0});
  6.  
  7. $b = new stdClass;
  8. $b->{0} = 'aaa';
  9. var_dump($b, $b->{0});
Success #stdin #stdout #stderr 0.01s 23468KB
stdin
Standard input is empty
stdout
object(stdClass)#1 (1) {
  [0]=>
  string(3) "aaa"
}
NULL
object(stdClass)#2 (1) {
  ["0"]=>
  string(3) "aaa"
}
string(3) "aaa"
stderr
PHP Notice:  Undefined property: stdClass::$0 in /home/qNctPB/prog.php on line 5