PHP 함수 중에서, 특정 디렉토리의 내용을 읽어오기 위한 함수 readdir()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?php $dir = "/images/"; // Open a directory, and read its contents if (is_dir($dir)){ if ($dh = opendir($dir)){ while (($file = readdir($dh)) !== false){ echo "filename:" . $file . "<br>"; } closedir($dh); } } ?> | cs |
php 비밀번호 암호화 복호화 password_verify, password_hash (0) | 2019.03.05 |
---|---|
php date 날짜함수,지정된 날짜로부터 일정간격의 날짜구하기 (0) | 2019.02.26 |
mysql 에러출력 mysqli_error() mysqli_connect_error() (0) | 2019.02.22 |
utf-8 문자를 euc-kr 로 변환하여 DB에 저장하기 (0) | 2018.02.25 |
PHP 파일이 이미 존재(중복)하는지 확인함수... file_exists() , 파일중복 (0) | 2017.01.02 |
댓글 영역