pastebin

Paste Search Dynamic
Recent pastes
fork
  1. <?php
  2. $pid = pcntl_fork();
  3.  
  4. if($pid) {
  5.   // parent process runs what is here
  6.   print 'padre: valore di $pid '.$pid."n";
  7. }
  8. else {
  9.   // child process runs what is here
  10.   print 'figlio: valore di $pid '.$pid."n";
  11. }
  12. ?>
Parsed in 0.021 seconds