fork download
  1. <?php
  2.  
  3. error_reporting(E_ALL| E_NOTICE);
  4. ini_set('display_errors', 1);
  5.  
  6. $ar = new ArrayObject();
  7.  
  8. $ar['foo']['bar'] = 1;
  9. assert($ar['foo']['bar'] === 1);
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
Standard output is empty