0
0

More than 3 years have passed since last update.

特定のディレクトリ配下のファイル名を全部取得する

Last updated at Posted at 2020-12-03
$result = glob('/path/to/target/' . '*');
foreach ($result as $key => $value) {
     var_dump($value);
}

/path/to

※ルート直下のpathというディレクトリ、という意味では無い

/path/toは、自身の環境に合わせて適宜読み替えてね、という意味
https://teratail.com/questions/153120

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0