在PHP中可以透過file_exists()這個函式來檢查檔案是否存在

用法很簡單:

<?php
	$path = "/var/www/test/index.php";
	if(file_exists($path)) echo "有此檔案";
?>
Categories: PHP