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.
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.