判斷文件或目錄是否存在有自帶的函數函數
file_exists:文件是否存在post
$file = "check.txt"; if(file_exists($file)) { echo "當前目錄中,文件".$file."存在"; } else { echo "當前目錄中,文件".$file."不存在"; }
is_dir:目錄是否存在spa
$dir = "c:/datacheck"; if(is_dir($dir)) { echo "當前目錄下,目錄".$dir."存在"; } else { echo "當前目錄下,目錄".$dir."不存在"; }