
Get all images from folder - php:
The below code is used to get all images from folder in local system. we can set the condition for file type to read files from particular directory in php.
<?php
$imgdir = 'images/';
$allowed_types = array('png','jpg','jpeg','gif');
$dimg = opendir($imgdir);
while($imgfile = readdir($dimg))
{
...