我的网站“头部”有php include
声明。
我使用以下代码来调用head.php
...
<?php
include '../components/head.php'
?>
在我的head.php
我有以下代码......
<head>
<link rel="stylesheet" type="css" href="/style.css">
<title>Dummy Code</title>
</head>
如果我的网页上有Dummy Code | About
的标题,我可以通过在我的网页上设置变量来更改标题。
有没有这样做?
答案 0 :(得分:3)
它们都属于全局命名空间,所以你可以这样做:
<?php
$title = 'about';
include '../components/head.php'
?>
head.php:
<head>
<link rel="stylesheet" type="css" href="/style.css">
<title>Dummy Code | <?=$title; ?></title>
</head>
但请确保您理解:这是非常简化的代码,不应该用于生产项目。