更改 PHP 生成的标题

发布于 2025-01-05 16:28:58 字数 218 浏览 0 评论 0原文

我的网站上有一个基于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疑心病 2025-01-12 16:28:58

Template.php,第 121 行,替换为

 '{info:dir}'=>(isset($dir)?preg_replace('#^\./#','',Url::html_output($dir)):''),

如果它总是前面有 ./ 您也可以使用

 '{info:dir}'=>(isset($dir)?substr(Url::html_output($dir),2):''),

Template.php, line 121, replace with

 '{info:dir}'=>(isset($dir)?preg_replace('#^\./#','',Url::html_output($dir)):''),

if it always has ./ in front you could use also

 '{info:dir}'=>(isset($dir)?substr(Url::html_output($dir),2):''),
拥抱影子 2025-01-12 16:28:58

如果没有更多信息,很难为您提供正确的答案。不过,我在下面提供了一些基本的解决方案。

假设您使用的模板引擎是 Smarty(或具有类似语法的引擎),您可以将标题标记的值替换为以下内容:

<title>{info:dir|replace:'./':''}</title>

或者,您可以编辑 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:

<title>{info:dir|replace:'./':''}</title>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文