function awardiconIndex($lang,$id){
$content = array();
$dir = "../gamerzone/upload/award/";
if (is_dir($dir)){
$dh = opendir($dir);
chdir ($dir);
while (($file = readdir($dh)) !== false) {
if (is_dir($file) && basename($file)!='.' && basename($file)!='..'){
getDirList($file);
}
else if($this->filename($file) != "." && $this->filename($file) != ".."){
$content[] = $file;
}
}
chdir("../");
closedir($dh);
}
var_dump($content); //印出dir資料夾裡面的全部檔案

}

function filename($file)
{
$path_parts = pathinfo($file);
return basename($file, $path_parts['extension']);
}

arrow
arrow
    全站熱搜

    cabuchi 發表在 痞客邦 留言(0) 人氣()