我有如下問題的傢伙,我的PHP腳本是這樣的:/bin/sh的0:找不到命令
#!/usr/bin/php
<?PHP
// Define the path to file
$file = 'mydb.sql';
if(!file)
{
// File doesn't exist, output error
die('file not found');
}
else
{
// Set headers
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: inline; filename=$file");
header("Content-Type: application/x-sql ");
header("Content-Transfer-Encoding: binary");
// Read the file from disk
readfile($file);
}
?>
現在我想通過crontab來叫我的PHP腳本,我的cron命令是:
0 0 * * * /web/conf/ -q /home/content/81/10928381/html/dumper/work/backup/pr_download.php
但是,爲什麼,每次我跑我的劇本的時候,它總是給我發了一條錯誤消息: /bin/sh的0:找不到命令
你能他我是男生?
感謝
將'if(!file)'改爲'if(!$ file)' – Baba