0

我编写了一个脚本来生成一些 XML,我使用一种非常基本的方法将 XML 的结果保存到文件中:

<?php
// start the output buffer to cache the content
ob_start();

//SOME PHP CODE HERE TO GENERATE CONTENTS ON THE FILE

$cachefile = "results.xml";
// open the cache file for writing
$fp = fopen($cachefile, 'w'); 
// save the contents of output buffer to the file
fwrite($fp, ob_get_contents()); 
// close the file
fclose($fp); 
// Send the output to the browser
ob_end_flush(); 

当我手动转到服务器上包含脚本的文件的 URL 时,脚本会运行并创建文件。

但是,当我尝试将其作为 cron 作业运行时,脚本会运行并且输出是通过不保存到文件来生成的。

任何想法为什么?

4

3 回答 3

0

应该是权限问题。尝试 chmod 777,然后重新 cron。

于 2012-04-07T00:08:53.750 回答
0

我可以想象,cronjob 只请求标头而不是正文,因此 apache 根本不会生成一个,因此 ob 保持为空...您可以尝试以下操作:

<?php
$out = ''

//SOME PHP CODE HERE TO GENERATE CONTENTS ON THE FILE
$out .= 'content' . "\n";
$out .= 'more' . "\n";
$out .= 'more' . "\n";
$out .= 'more' . "\n";
$out .= 'more' . "\n";

$cachefile = "results.xml";
// open the cache file for writing
$fp = fopen($cachefile, 'w'); 
// save the contents of output buffer to the file
fwrite($fp, $out); 
// close the file
fclose($fp); 
// Send the output to the browser

print$out;
于 2012-04-07T00:09:12.517 回答
0

正在创建文件,但在根目录中,而不是在运行脚本的目录中。

在浏览器中运行的文件是在正确的目录中创建的,通过cron运行并且它是在根目录中创建的。

可能需要指定完整路径。

于 2012-04-07T00:13:27.707 回答