Everything
php
Learn
Community
Releases
The PHP Project
Learn
Community
Releases
The PHP Project
Home
»
Project
»
Newsgroups
»
php.internals
»
creating detached processes in PHP
»
creating detached processes in PHP
php.internals
ilya77@gmail.com
21 years ago
PHP has system() and shell_execute(), but how about spawn() ? Currently we can only create an asynchronous process only with proc_open() or popen(), and then I have to track the pipe(s). It would be great to "exec and let go" the process.