<?php main(); function main() { $pid=pcntl_fork(); if($pid) { exit(0); } else { posix_setsid(); $p...