개발/php
php 파일 존재 유무 확인
철권
2018. 7. 20. 13:13
728x90
<?php
$is_file_exist = file_exists('/blog/test.txt');
if ($is_file_exist) {
echo 'Found it';
}
else {
echo 'Not found.'
}
?>
이거를 html에 어떻게 적용할까
728x90
반응형