php判斷有沒有資料夾的方法:先建立一個PHP範例檔案;然後透過PHP內建函數「file_exists」來檢查檔案或目錄是否存在即可。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
php語言提供了file_exists 函數,其功能為:
file_exists — 檢查檔案或目錄是否存在
函數原型定義如下:
bool file_exists ( string $filename )
範例程式碼:
<?php $filename = '/path/to/'; if (file_exists($filename)) { echo "$filename exists"; } else { echo "$filename does not exist"; } ?>
推薦學習:《PHP影片教學》
以上是php怎麼判斷有沒有資料夾的詳細內容。更多資訊請關注PHP中文網其他相關文章!