fork download
  1. <?php
  2.  
  3. $x = 0;
  4.  
  5. $shutdown = function() use(&$x) { echo $x; };
  6.  
  7. $x = 1;
  8.  
  9. exit();
  10.  
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
1