更改 PHP 生成的标题
我的网站上有一个基于 PHP 的小型目录索引器。其中一个模板按如下方式处理标题标签:
<title>{info:dir}</title>
生成的标题标签以“./”开头,例如“./dir1/dir2/and_so_on”。 我想要的是去掉开头的“./”。
PHP 类在这里:[已删除]
请提出建议?
I have a small PHP based directory indexor on my site. One of the templates handles the title tag as follows:
<title>{info:dir}</title>
The generated title tag starts with "./" for instance "./dir1/dir2/and_so_on".
What I want is to get rid of the "./" at the begining.
The PHP classes are here: [removed]
Please advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Template.php,第 121 行,替换为
如果它总是前面有
./
您也可以使用Template.php, line 121, replace with
if it always has
./
in front you could use also如果没有更多信息,很难为您提供正确的答案。不过,我在下面提供了一些基本的解决方案。
假设您使用的模板引擎是 Smarty(或具有类似语法的引擎),您可以将标题标记的值替换为以下内容:
或者,您可以编辑 template.php 文件并执行 substr() 或 str_replace( )第 121 行。
我建议在 html 模板而不是 PHP 文件中进行更改。
Very hard to provide you with a proper answer without having more information. However, i've provided a few basic solutions below.
Assuming that the template engine you are using is Smarty (or something with similar syntax), you can replace the value of the title tag with the following:
Alternatively, you can edit the template.php file and do a substr() or str_replace() on line 121.
I recommend making the change in the html template rather than the PHP file.