当我尝试使用 cron 作业运行文件时,我得到以下信息
Parse error: syntax error, unexpected T_STRING in /home/joshand2/public_html/application/models/model_posting.php on line 1787
1787 中的行是goto endofloop;
我不知道这行中是否存在任何与语法相关的问题,但endofloop
引用。
循环结束:
if (file_exists("cookies/".$this->job_id."_job_".$this->site_id."_site.txt")) {
echo "The file cookies/".$this->job_id."_job_".$this->site_id."_site.txt exists";
unlink("cookies/".$this->job_id."_job_".$this->site_id."_site.txt");
}
有人可以帮我解决这个错误吗?