close
<?php
echo file_exists("test.txt");
?>
輸出:
1
<?php
$filename = '/path/to/foo.txt';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>
全站熱搜