例如,如果 URL 是,http://localhost/category/news/old-stuff
那么这个函数会给我这个结果:
<a>newsold stuff</a>
问题:
如何将每个单词放在/
标签<a>
之间?
例子:
<a>news</a>
<a>old stuff</a>
我正在使用的功能:
$address = $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
$current = strtr($address, array('localhost' => '', 'category' => '', '/' => '', '-' => ' ' ));
echo '<a href="#">'. $current .'</a>';
感谢您的任何回答,抱歉英语不好。