for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
function getDirFiles($path)
{
$dir = scandir($path);
$ex_folders = array('..', '.');
return array_diff($dir,$ex_folders);
}