我正在做一个抓取项目,在应用程序的某个地方我需要这个功能
一次又一次地运行一个脚本,停顿几秒钟。
我尝试使用 pcntl 来完成这项工作。所以写了这个脚本
/************************/
$intra_sleep=10; // we're going to set the intra process launch sleep at 10 seconds
$task_process=null; // by default this is set to null -- do nothing
$loop_limit=0; // this is the number of times the loop shoul run -- if set to -1 look infinite number of times
if (isset($argv[1])) $task_process=$argv[1];
if (isset($argv[2])) $intra_sleep=$argv[2];
if (isset($argv[3])) $loop_limit=$argv[3];
for ($loop_count=0; $loop_limit==-1 ? true : $loop_count< $loop_limit; $loop_count++)
{
$pid= pcntl_fork();
if ($pid == -1)
{
die('MASTER: could not fork');
}
else if ($pid==0)
{
if ($task_process)
{
echo "Sleeping for $intra_sleep Seconds\n";
sleep($intra_sleep);
echo "Launching Child \n\n";
exec($task_process); // from here process script is being launched
}
else
{
echo " CLONE: no task process defined -- doing nothing " . PHP_EOL;
}
}
else
{
pcntl_waitpid($pid,$status);
}
}
/*********************/
我像这样从 CLI 调用这个脚本
nohup php /this/script.php "php /path/to/process.php" 10 -1
我希望 process.php 会以 10 秒的间隔一次又一次地启动。它正在按照我的预期工作,但是当我检查正在运行的进程时,这个脚本启动了数千个正在运行的进程。
我的要求很简单:一个脚本应该以 10 秒的 Pause 一次又一次地启动。