Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行一个基于数据库值运行另一个 php 脚本的 cron 作业。
我需要从数据库中传入一些参数。我最初尝试使用以下内容。
while ($row = mysql_fetch_assoc($result)) { $url = "test.php?msg=".$row['message']."&phone=".$row['phone']; exec($url); }
它无法运行。将信息传递到 test.php 的最佳方法是什么???
您的 exec() 命令不完整,您需要执行类似的操作
exec('wget http://www.mywebsite.com/' . $url);
也尝试倾销回报
exec($url,$output,$retval); var_dump($output,$retval);