Ok, thanks to all :)
Andrey Hristov a écrit :
Try
pcntl_fork() and the ext/pcntl extension (*nix only
but I heard someting about cygphp which uses Cygwin
and has ext/pcntl for windows).
Andrey
overight wrote:
Hello
What about fork() in php ?
I have tried to understand c language yesterday, and
Hello
What about fork() in php ?
I have tried to understand c language yesterday, and I have write that
in /ext/standard/basic_functions.c:
PHP_FUNCTION(php_fork){
fork();
}
(and a few lines to decalare this function)
And it's work !
Now I can fork my php scripts with the php_fork() function