[wd_asp elements=’search’ ratio=’100%’ id=1]

Scandir show all pdf files in a folder

27th April 2018

Php - Miscellaneous

php codehaven


$clientnumber = "myfolder/";

$pdffiles = array();
$valid_files = array('pdf');
if(is_dir($clientnumber)){
foreach(scandir($clientnumber) as $file){
$ext = pathinfo($file, PATHINFO_EXTENSION);
if(in_array($ext, $valid_files)){
array_push($pdffiles, $file);
}
}
}
echo json_encode($pdffiles);