我正在使用glob函数;
<?php
$files = glob("../Desktop/IMG/BananzaNews/Thumbs/*.*");
for ($i=1; $i<count($files); $i++)
{
$imagePath = $files[$i];
$withoutExt = preg_replace('/\\.[^.\\s]{3,4}$/', '', $imagePath);
$imageName = str_replace("img/", "", $withoutExt);
print $imagePath."<br />";
print $imageName."<br />";
echo '<img src="'.$imagePath .'" alt="Random image" />'."<br /><br />";
}
?>
哪个在我的子域上,我知道像以前一样工作只是glob(&#34; img / 。&#34;),它显示了所有文件。
在同一页面上,文件被上传到&#34; ../ Desktop / IMG / BananzaNews / Thumbs /&#34;但设置glob(&#34; ../ Desktop / IMG / BananzaNews / Thumbs / 。&#34;)不会显示我的文件。