PHP GENERAL 44 DETACHING
Date: Tue, 8 Jul 2003 22:48:33 +0200

Subject: detaching
From: uros.gruber@no-spam (Uros Gruber)

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:uros.gruber@no-spam