if (is_dir($dir)) {
if($handle = opendir($dir)) {
while($file = readdir($handle)) {
// Break the filename by period; if there's more than one piece, grab the last piece.
$parts = explode(".", $file);
if (is_array($parts) && count($parts) > 1) {
$ext = end($parts);
// If it's an image that we want, echo the code.
if ($ext == "png" OR $ext == "PNG" OR $ext == "jpg" OR $ext == "JPG" OR $ext == "jpeg" OR $ext == "JPEG" OR $ext == "gif" OR $ext == "GIF")
echo "<img src=\"$path/$file\" />";
}
}
closedir($handle);
}
...
Ben Wordpress kullanıyorum ve sayfa yüklendiğinde oldukça yavaş, ama aynı zamanda o görüntüleri bir sürü sahip olmaktan olabilir. Ben sadece performans nedenleriyle üzerine kaşlarını çattı şey yapıyor değildi emin olmak istedim.