Return to Snippet

Revision: 16229
at July 29, 2009 10:56 by ping_ch


Initial Code
function fork($cmd){
    $cmd = $cmd.' > /dev/null &';
    shell_exec($cmd);
}

Initial URL
fork-process-with-php

Initial Description


Initial Title
Fork a process with PHP

Initial Tags
php

Initial Language
PHP