使用函数 file_exists

<?php
$filename = 'test.txt';

if (file_exists($filename)) {
    echo "文件存在";
} else {
    echo "文件不存在";
}
?>