Aynı php fonksiyonu ikinci dizinden çıktı dosyalarını

2 Cevap php

Ben dizin IM / çıkışı görüntüleri aşağıdaki kodu var, nasıl (örneğin) bu başka diectory çıktı images / seslendi çimdik? Geçerli bir altında başka bir img etiketi yankı olarak?

<?php
    $imgDir = "im/";

    $images = scandir($imgDir); 
    $ignore = array( ".", ".." ); 

    natsort($images);

    foreach($images as $file)
       {
    if(!in_array($file, $ignore))
       {
    echo "<div id=\"slideWrapper\">\n";
    echo "<img src=\"im/$file\" width=\"1000\" height=\"683\" alt=\"$files\" />\n";
    echo "</div>\n";
    };
    }
?>

2 Cevap

i bunu şu şekilde yapacağını - bir dizi için $ imgDir alışverişinde bulundu. $ Görüntüleri dizisi şimdi yolunu ve dosya hem de içerir.

<?php
    $imgDirs = array("im/", "out/");
    $images = array();

    // take one of the given directories
    foreach($imgDirs as $imgDir)
    {
       // open a directory reader for this given directory
       $dh = opendir($imgDir);
       // read a single filename of this directory (stop loop if there is no more file)
       while (false !== ($filename = readdir($dh))) 
       {
           // ignore '.' and '..'
           if($filename != '.' && $filename != '..')
           {
              // add the directory and filename to the images array
              // all images, regardless of the folder, are stored in one array :)
              $images[] = $imgDir . $filename;
           }
       } 
       closedir($dh);
    }

    natsort($images);

    // loop for every image
    foreach($images as $file)
    {
       // for every img, echo a div-img-/div-combination
       echo "<div id=\"slideWrapper\">\n";
       echo "<img src=\"$file\" width=\"1000\" height=\"683\" alt=\"$file\" />\n";
       echo "</div>\n";
    }
?>

Bu sizin ihtiyaçlarınıza uygun olacağına inanıyorum.

<?php
    $imgDir = 'im/';
    $imgDir2 = 'out/';
    $images = array();

    // open a directory reader for the first directory
    $dh = opendir($imgDir);
    // read a single filename of this directory (stop loop if there are no more files)
    while (false !== ($filename = readdir($dh))) 
    {
        // ignore '.' and '..'
        if($filename != '.' && $filename != '..')
        {
           // add the directory and filename to the images array
           $images[] = $filename;
        }
    }
    closedir($dh);

    natsort($images);

    // loop for every image
    foreach($images as $image)
    {
       // for every img, echo a div-2-images-div-combination
       echo '<div id="slideWrapper">';
       echo '<img src="'.$imgDir . $image.'" width="1000" height="683" alt="'.$image.'" />';
       echo '<img src="'.$imgDir2 . $image.'" width="1000" height="683" alt="'.$image.'" />';
       echo '</div>';
    }
?>

Normal tırnak kaçmak zorunda değilsiniz gibi, tek tırnak kullanarak tavsiye ederim ve daha hızlı :)