AFG
问问题
4853 次
2 回答
6
让您入门的超级简单示例。
<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>
根据 Alllain Lalonde 的评论进行编辑。(希望这就是他的意思)
于 2009-01-14T01:40:49.820 回答
1
我不确定您在此处寻找的确切内容,但是要拥有动态标题,您可以执行以下操作:
<title><?php echo $theDynamicTitle; ?></title>
于 2009-01-14T01:23:53.550 回答