我在几天前就一直在进行当地评估,我已注意到,我的一个外派组织的职责是呼吁外部方案正确打火。 在进一步调查后,很明显,该方案确实执行,但过早地把它作为重要渠道,利用档案——植被——来检索具体档案的内容。
档案是一份没有延期的便衣档案。 I mguessing that file_get_contents() is treatmenting the file as a summary, since there is no extension? 令人奇怪的是,如果我从一个网络浏览器中人工执行同样的方案,所有工作都是完美的。
此处为清晰度的一个实例线——
while(file_get_contents( plaintextfile ) == "something"){
/// Do This
}
The above works just fine when I visit /program.php from a web browser, but when calling it like this it gives me a file/folder not found error for plaintextfile .
exec( php /program.php , $output);
foreach($output as $output){
print $output . "<br>";
}
Thanks in advance to anyone who can shed some light on this situation. I m really puzzled by this...