Voting

: seven plus one?
(Example: nine)

The Note You're Voting On

simon dot riget at gmail dot com
6 years ago
Be aware that pcntl_fork may return NULL (not -1) if the function is disabled in php.ini.
<?php
$pid
= pcntl_fork();
if (
$pid < 0 || $pid === null )
die (
"Unable to fork process");
?>

<< Back to user notes page

To Top