fork download
  1. <?php
  2.  
  3.  
  4. $tickets = ['a', 'b'];
  5. unset($tickets[0]);
  6.  
  7. echo $tickets[0];
Success #stdin #stdout #stderr 0.01s 24400KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Notice:  Undefined offset: 0 in /home/kJ7Xnb/prog.php on line 7