0

我试图通过使用 php 将投资组合/目录中页面的元标题作为指向这些页面的链接的无序列表列出来使我的网站更易于管理。有人可以帮忙吗?这是我希望它看起来像在右侧边栏顶部的示例:http: //huwdesign.co.uk/portfolio/WaterCrisis.html

真的很感激一些建议!干杯。

4

1 回答 1

1

我们将使用glob()返回特定目录中所有文件的数组的basename()函数和返回文件名的函数。

<?php

$dir = 'portfolio'; // The directory containing the files.
$ext = '.html'; // The file extension.

foreach (glob($dir . '/*' . $ext) as $file) {
    echo basename($file, $ext); // Echos out the file name.
}

您想更改$ext变量和$dir变量的值。使用上面的代码,我相信您可以弄清楚如何制作列表。file_get_contents()如果您愿意,也可以使用它来获取文件的内容。:)

于 2013-05-24T14:34:52.327 回答