假设我有简单的 php 守护程序脚本:
#!/usr/local/bin/php -q
<?php
set_time_limit(0);
while(1){
//do something here
if ($something == "somethingelse"){exit;}
}
?>
我想从另一个 php 脚本运行它。最好的方法是什么?我一直在使用 curl :
$url = "url to php daemon file";
$ch = curl_init($url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT, 1);
curl_setopt($ch,CURLOPT_TIMEOUT, 1);
$not_important = curl_exec($ch);
curl_close($ch);
但我正在寻找一个更好的主意,如果有的话:)。