PHPがネットワークファイルの存在を判断する方法
この実例は、PHPがネットワークファイルの存在を判断する方法を説明する。皆さんの参考にしてください。具体的な実現方法は以下の通りです。
$file = "https://www.jb51.net/demo/file_exists.zip";
$fileExists = @file_get_contents($file,null,null,-1,1) ? true : false;
if($fileExists){
echo "File Exists!";
}else{
echo "Sorry, we couldn't find the file.";
}
本論文で述べたように、皆さんのphpプログラムの設計に役に立ちます。