Created
August 5, 2018 04:08
-
-
Save artemsites/910d17b8261ec3c62231e1501da6be1e to your computer and use it in GitHub Desktop.
Получение имен файлов и каталогов в заданной дирректории.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Получение имен файлов и каталогов в заданной дирректории. | |
* | |
* @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