Forking the PHP process requires the pcntl extension. This extension is limited to *nix operating systems. Once installed the key function is pcntl_fork(). The manual contains this excellent example of its use $pid = pcntl_fork(); if ($pid == -1) { … Continue reading
4 October 2011
by nat
0 comments