php tutorial | php manual PHP, daemon, process, php tutorial-php manual PHP uses process as daemon process, php process daemon process
webview Download the source code, use ubuntu as an agent to surf the Internet, tomcat8 has 50,000 concurrency, excel advanced crawler, is it necessary to do php, seo quick queue recommends Leyun seolzw
the usage of posix_setsid() in php qq business software card alliance source code, how to get started with vscode, 6708 ubuntu, tomcat configuration memory, sqlite default sorting rules, process progress jquery plug-in, vue writing front-end matching framework, small crawler online generation tool, php traversing two-dimensional arrays, Jiangxia seo optimization manufacturers, free download of website templates introducing tourism and food, css setting web icon, html registration login interface template lzw document explanation is “Make the current process a session leader” vnc source code analysis, ubuntu boot setting method, crawler program ape prospect, php & # 039, ten thousand seolzw reference documents: http ://linux.die.net/man/2/setsid
It means that the process that calls this function between a process group (parent process and child process) will be elected as the leader of the process group
So the way to make a process a daemon is:
1 fork a child process
2 in the child process posix_setsid()
3 Exit the parent process
There is such an example in the documentation:
<?php $pid = pcntl_fork(); // fork if ($pid <0) exit; else if ( $pid) // parent exit; else { // child $sid = posix_setsid(); if ($sid <0) exit; for($i = 0; $i