fork download
  1. <?php
  2.  
  3. $t = ['text' => 'ss'];
  4. processOptions($t);
  5.  
  6. function processOptions(array &$options) {
  7. echo $options["text"]; //Undefined index: text
  8. }
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
ss