gpt4 book ai didi

php - 如何根据 URL 值在 php 中动态更改 <title> 标记

转载 作者:行者123 更新时间:2023-12-03 19:13:29 25 4
gpt4 key购买 nike

我想更改标题页以便爬虫可以看到它。

URL 的格式为:public.sample.com/account/Disney

我使用 require() 加载一个标准的全局头包含文件

这是定义当前默认标签的地方。

如果 URL 是 public.sample.com/account/Disney,我希望标签改为:

这是迪士尼的帐户资料

我认为需要在这个全局头文件中写入一些内容,但不确定是什么。

谢谢。

最佳答案

帮助您入门的 super 简单示例。

<title><?php
if ( preg_match('/([^\/]+)\/([^\/]+)$/', $_SERVER['PHP_SELF'], $matches) ) {
list($dummy, $profileType, $profileName) = $matches;
$safeProfileType = htmlentities($profileType);
$safeProfileName = htmlentities ($profileName);
echo "This is an $safeProfileType profile for $safeProfileName";
} else {
echo "Unknown profile!";
}
?></title>

根据 Allain Lalonde 的评论进行编辑。 (希望这就是他的意思)

关于php - 如何根据 URL 值在 php 中动态更改 &lt;title&gt; 标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/441565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com