fork download
  1. <?php
  2. class z
  3. {
  4. function __toString() { return 'zzzzzzzz'; }
  5. }
  6.  
  7. $a[(string)new z()]=1;
  8.  
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
array(1) {
  ["zzzzzzzz"]=>
  int(1)
}