You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
418 B

<?php
$img_path = BASE_PATH.MEDIA_DIR;
$fp=opendir($img_path);
while($file = readdir($fp))
{
if(preg_match('/\.jpg$/i', $file) || preg_match('/\.jpeg$/i', $file) || preg_match('/\.png$/i', $file) || preg_match('/\.gif$/i', $file)) {
$images[] = array("title"=>$file, "value"=>BASE_URL . MEDIA_DIR . $file);
}
}
closedir($fp);
header('Content-type: application/json');
echo json_encode($images);
exit;
?>