将网站移至另一台服务器。将文件statistic.php添加到要执行的Сron。只有这个不喜欢的Cron。写错误:
/home/site/www/statistic.php: line 1: ?php: No such file or directory
/home/site/www/statistic.php: line 2: syntax error near unexpected token `"bd.php"'
/home/site/www/statistic.php: line 2: `include ("bd.php");
有我的代码
<?php
include ("bd.php");
$result = mysql_query("SELECT MAX(id) FROM statistic_dep",$db);
$myrow1 = mysql_fetch_array($result);
$last_id=$myrow1[0];
...
答案 0 :(得分:3)
确保您将脚本作为php脚本而不是bash脚本执行。
您的crontab应如下所示:
* * * * * /usr/bin/php -f /path/to/file.php
以php的形式执行脚本的另一种方法是在第一行添加一个shebang:
#!/usr/bin/php
<?php ...