1

我正在运行一个基于数据库值运行另一个 php 脚本的 cron 作业。

我需要从数据库中传入一些参数。我最初尝试使用以下内容。

while ($row = mysql_fetch_assoc($result)) {
 $url = "test.php?msg=".$row['message']."&phone=".$row['phone'];
 exec($url);
}

它无法运行。将信息传递到 test.php 的最佳方法是什么???

4

1 回答 1

1

您的 exec() 命令不完整,您需要执行类似的操作

exec('wget http://www.mywebsite.com/' . $url);

也尝试倾销回报

exec($url,$output,$retval);
var_dump($output,$retval);
于 2013-07-15T19:34:29.330 回答