//ディレクトリ・ハンドルを開く $res_dir = opendir( '/var/www/hogehoge' )or die('could not open'); //ディレクトリ内のファイル名を1つずつを取得 $_hogehoge = array(); while( $file_name = readdir( $res_dir ) ){ //配列に格納していく array_push($_images,$file_name); } //ディレクトリ・ハンドルをクローズ closedir( $res_dir );
コメントを残す