PHP包括各种各样

时间:2013-06-23 19:41:40

标签: php html include title

我的网站“头部”有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的标题,我可以通过在我的网页上设置变量来更改标题。

有没有这样做?

1 个答案:

答案 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>

但请确保您理解:这是非常简化的代码,不应该用于生产项目。