사진을 표시할 수는 있는데 img 폴더에 있는 사진을 모두 표시하려면 어떻게 해야 하나요? $url = 'upload/'; 로 변경하면 작동하지 않습니다. 그러면 어떻게 해야 합니까?
<code>header("Content-Type: image/jpeg;text/html; charset=utf-8"); $url='1.jpg'; $img = file_get_contents($url,true); echo $img;</code>
사진을 표시할 수는 있는데 img 폴더에 있는 사진을 모두 표시하려면 어떻게 해야 하나요? $url = 'upload/'; 로 변경하면 작동하지 않습니다. 그러면 어떻게 해야 합니까?
<code>header("Content-Type: image/jpeg;text/html; charset=utf-8"); $url='1.jpg'; $img = file_get_contents($url,true); echo $img;</code>
방법은 다양하며, 예시는 다음과 같습니다
<code>$dir = "upload/"; //要获取的目录 if (is_dir($dir)){ if ($dh = opendir($dir)){ while (($file = readdir($dh))!= false){ $filePath = $dir.$file; echo "<img src='".$filePath."'/>"; } closedir($dh); } }</code>