Hello!
first my code
#!/usr/local/bin/php -q
<?php
echo "Detached: ".posix_setsid()."\n";
for ($i=0;$i<10;$i++) {
sleep(3);
}
echo "Done!\n";
?>
I read that posix_setsid return pid on succesfull detaching. But i get
-1. I read man for setsid and this -1 mean error.
What i want is that if i run this script with automatic detaching.
But it does nothing than waiting this for to finish.
What am I doing wrong.
--
lp,
Uros mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php