Current Article:

How to run a PHP script as daemon process in Linux?

How to run a PHP script as daemon process in Linux?

You could start your PHP script from the command line (i.e. bash) by using nohup:

nohup php myscript.php &

the & puts your process in the background.