Skip to content

Instantly share code, notes, and snippets.

@artemsites
Created August 5, 2018 04:08
Show Gist options
  • Save artemsites/910d17b8261ec3c62231e1501da6be1e to your computer and use it in GitHub Desktop.
Save artemsites/910d17b8261ec3c62231e1501da6be1e to your computer and use it in GitHub Desktop.
Получение имен файлов и каталогов в заданной дирректории.
/**
* Получение имен файлов и каталогов в заданной дирректории.
*
* @param [string] $dir - дирректория
* @return array
*/
function getNamesOfDir($dir) {
return array_slice(scandir($dir), 2);
}
$array_images_name = getNamesOfDir("./images/");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment