2016-08-25 56 views
-2

我有一個語法錯誤的問題。試圖從目錄上載圖像到我的html列表中,但它一直在說像:複雜的語法錯誤php html

解析錯誤:語法錯誤,意外''',期待','或';'在d:\ XAMPP \ htdocs中\瓦爾迪\上線的index.php 243

<?php 

$dir="img/"; 


if($opendir=opendir($dir)){ 
    while(($file=readdir($opendir))!==FALSE){ 
    if($file!="." && $file!="..") 
    echo '<li class="col-lg-4 col-md-4 col-sm-3 col-xs-4 col-xxs-12"> 
     <img class="img-responsive" src='"$dir/$file"'> 
     </li>'; 
    } 
} 
?> 
+1

http://php.net/manual/en/language .types.string.php – AbraCadaver

+0

這不是一個「複雜」的錯誤,你只需要學習正確的PHP字符串語法,特別是關於如何在你使用DELIMIT字符串的字符串中嵌入相同的引號位 –

回答

0

這是一個報價的問題試試這個

$dir = "img/"; 


if ($opendir = opendir($dir)) { 
    while (($file = readdir($opendir)) !== FALSE) { 
    if ($file != "." && $file != "..") { 
     echo '<li class="col-lg-4 col-md-4 col-sm-3 col-xs-4 col-xxs-12"> 
       <img class="img-responsive" src="'.$dir.'/'.$file.'"> 
      </li>'; 
    } 
    } 
} 
+0

是的,謝謝 ! – Milo111