如何检查外部服务器上是否存在文件?我有一个网址“
http://logs.com/logs/log.csv”,我在另一台服务器上有一个脚本来检查这个文件是否存在.我试过了
$handle = fopen("http://logs.com/logs/log.csv","r"); if($handle === true){ return true; }else{ return false; }
和
if(file_exists("http://logs.com/logs/log.csv")){ return true; }else{ return false; }
这些方法不起作用
>确保已启用错误报告.
>使用if($handle)
>检查 allow_url_fopen是否属实.
>如果这些都不起作用,请使用 this method on the file_exists page.
>使用if($handle)
>检查 allow_url_fopen是否属实.
>如果这些都不起作用,请使用 this method on the file_exists page.