fork download
  1. <?php
  2.  
  3. $x = function ($n) {
  4. echo "$n\n";
  5. };
  6.  
  7. $x(1); // выведет 1
  8. $x(2); // выведет 2
Success #stdin #stdout 0.01s 24448KB
stdin
Standard input is empty
stdout
1
2