php4 이하에서의 scandir
/****************************** scandir() : php5에서 디렉토리 목록 반환 ******************************/ if(function_exists("scandir") == false) { function scandir($d,$o = 0) { if(!is_dir($d)) { return false; } $arr = Array(); if ($dh = opendir($d)) { while (($e = readdir($dh)) !== false) { $arr[] = $e; } closedir($dh); } if($o == 1) { return rsort($arr,SORT_STRING); } return sort($arr,SORT_STRING);; } }