我有一个代码可以正常工作,除了 1 个问题。
您可以在此处http://test.whatanswered.com/health/what-can-a-first-aider-do.php看到显示死链接的“相关文章”右下方的结果。
以下是应显示的 HTML。
<p><a href="../health/name-of-the-page.php">Name of the page</a></p>
我想像上面的“页面名称”一样去除破折号和 php,但它也会从 url 中去除破折号和 php。
代码是:
<?php
if ($handle = opendir('health')) {
$fileTab = array();
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
$fileTab[$file] = strtr(pathinfo($file, PATHINFO_FILENAME), '-', ' ');
}
}
closedir($handle);
shuffle($fileTab);
foreach(array_slice($fileTab, 0, 10) as $file => $health) {
$thelist .= '<p><a href="../health/'.$file.'">'.$health.'</a></p>';
}
}
?>
<?=$thelist?>