I would like to know how to count the number of files in a directory using Laravel 5.2:
$folderPath="upload/";
$countFile=0;
$totalFiles=glob($folderPath."*");
if($totalFiles){
$countFile=count($totalFiles);
}
print_r($countFile);
this is not working for me.