Answers for "how to scan files inside a folder without dots"

0

how to scan files inside a folder without dots

$files = array_diff( scandir("/path/to/directory"), array(".", "..") );
Posted by: Guest on June-14-2021

Code answers related to "how to scan files inside a folder without dots"

Browse Popular Code Answers by Language