我一直在关注一些关于将 php 脚本作为后台进程运行和管理的教程。我一直在玩下面的脚本。
<?php
$count = 0;
while(true){
$count = $count + 1;
file_put_contents('daemon1.log', $count, FILE_APPEND);
sleep(1);
}
?>
当我在浏览器窗口中运行它导航到它的 url,然后关闭窗口时,它似乎继续运行。这是典型的 php 脚本吗?一旦它在后台运行,我该如何停止这个过程?