簡體   English   中英

我想在線顯示目錄中的圖像,但不能正確顯示圖像,我該怎么做

[英]I want to show images in the directory online but it not show the images properly how I can do this

我正在嘗試顯示在線目錄中的圖像,但是圖像顯示不正確,並且破壞了我可以正確顯示所有圖像的操作

 <?php 
 // Connects to your Database 
 include_once("connection.php");
 //read image directory     
$images_dir = '/home/qeplaho/public_html/image/';
function ListFiles($images_dir) {
    if($dh = opendir($images_dir)) {
        $files = Array();
        $inner_files = Array();
        while($file = readdir($dh)) {
            if($file != "." && $file != ".." && $file[0] != '.') {
                if(is_dir($images_dir . "/" . $file)) {
                    $inner_files = ListFiles($images_dir . "/" . $file);
                    if(is_array($inner_files)) $files = array_merge($files, $inner_files); 
                } else {
                    array_push($files, $images_dir . "/" . $file);
                }
            }
        }
        closedir($dh);`enter code here`
        return $files;
    }
}
echo "<table>";
foreach (ListFiles('/home/qeplaho/www/image/') as $key=>$file){
    echo "<tr>";
    echo"<td>";
    echo '<img src=\"$images_dir\" width="200" height="200"/>';
    echo "</td>";
    echo "</tr>";
}
 echo "</table>";`<code>

這應該可以解決問題:

$handle = opendir(dirname(realpath(__FILE__)).'/pictures/');
        while($file = readdir($handle)){
            if($file !== '.' && $file !== '..'){
                echo '<img src="pictures/'.$file.'" border="0" />';

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM