fork(1) download
  1. <?php
  2.  
  3. function processOptions(array &$options) {
  4. echo $options["text"]; //как мне сюда получить результат
  5. $options["text"] = 'no';
  6. }
  7.  
  8. $test = ['text' => 'yes'];
  9. processOptions($test);
  10. echo $test["text"];
Success #stdin #stdout 0s 83392KB
stdin
Standard input is empty
stdout
yesno