is_file()
是 PHP 中的一個內置函數,用于檢查給定的文件路徑是否存在并且是一個常規文件
if (is_file($filepath)) {
echo "The file exists and is a regular file.";
} else {
echo "The file does not exist or is not a regular file.";
}
在這個示例中,$filepath
是一個包含文件路徑的變量。is_file()
函數會檢查該路徑是否存在,以及它是否指向一個常規文件。如果條件為真,則輸出 “The file exists and is a regular file.”,否則輸出 “The file does not exist or is not a regular file.”。