1

使用 SO 上其他地方的答案,我正在开发一个基本的 PHP 迭代器来显示嵌套 DIR 中的图像。

我的目标是让 PHP 通过 DIR 运行并添加一个 IMG 标记,其中 SRC 指向它迭代的文件。

我大部分时间都在那里,但是出现了一些额外的字符,这些字符会阻止图像显示。

代码(h2和h3是为了调试时的可读性,无论它们是否存在都存在问题):

// Create recursive dir iterator which skips dot folders
$dir = new RecursiveDirectoryIterator('./images/families/',
    FilesystemIterator::SKIP_DOTS);

// Flatten the recursive iterator, folders come before their files
$it  = new RecursiveIteratorIterator($dir,
    RecursiveIteratorIterator::CHILD_FIRST);

// Maximum depth is 1 level deeper than the base folder
$it->setMaxDepth(5);

// Basic loop displaying different messages based on file or folder
foreach ($it as $fileinfo) {
    if ($fileinfo->isDir()) {
        printf("<h2>Folder - %s\n</h2>", $fileinfo->getFilename());
    } elseif ($fileinfo->isFile()) {
        printf("<h3><img src=\"images/families/%s/%s></h3>", $it->getSubPath(), $fileinfo->getFilename());
    }
}

结果通过浏览器中的查看源:

Folder - smith/40th
<img src="images/families/smith/40th/40th_1.jpg>
<img src="images/families/smith/40th/40th_11.jpg>

..ETC


浏览器窗口中的结果(选择“在新窗口中打开图像”):

"The requested URL /images/families/smith/40th/40th_1.jpg><img src= was not found on this server.""

This is the URL in the address bar:
/images/families/smith/40th/40th_1.jpg%3E%3Cimg%20src=

所以我创建 img 的代码是添加额外的字符/创建浏览器无法正确读取的字符。

这是编码问题吗?谢谢阅读。

4

2 回答 2

1

您忘记关闭图像标签:

printf("<h2>Folder - %s\n</h2>", $fileinfo->getFilename());
} elseif ($fileinfo->isFile()) {
    printf("<h3><img src=\"images/families/%s/%s\"></h3>", $it->getSubPath(), $fileinfo->getFilename());
}
于 2013-01-30T15:21:04.127 回答
0

您只是错过了src属性中的结束引号,这导致它运行到后续标记上。

printf("<h3><img src=\"images/families/%s/%s\"></h3>", $it->getSubPath(), $fileinfo->getFilename());
//-----------------------------------------^^^^^
于 2013-01-30T15:20:16.917 回答