1

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如果我$title = "About"在我的网页上有一个标题的话。

有没有办法做到这一点?

4

1 回答 1

3

它们都属于全局命名空间,所以你可以这样做:

<?php 
    $title = 'about';
    include '../components/head.php' 
?>

头.php:

<head>
    <link rel="stylesheet" type="css" href="/style.css">
    <title>Dummy Code | <?=$title; ?></title>
</head>

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

于 2013-06-23T19:45:04.157 回答