<?php $targetdir="./datafolder/"; $DIRLIST=GETDIRLIST($targetdir); if($DIRLIST<>""){ foreach($DIRLIST as $buf){ print $buf." "; } } #★★★★★★★★★★★★★★★★★★★★★# #★★★ フォルダ内リスト作成 ★★★# #★★★★★★★★★★★★★★★★★★★★★# function GETDIRLIST($targetdir){ if($targetdir==""){ return ""; } if(!file_exists($targetdir)){ return ""; } $dir=dir($targetdir); while(($ent=$dir->read()) !== FALSE){ if(eregi('.+xml$|.+html$',$ent)){ $DIRLIST[]=$ent; } } return $DIRLIST; } ?>
フォルダ内リスト作成
トラックバック(0)
トラックバックURL: http://www.adg7.com/mt/mt-tb.cgi/346
コメントする