将变量传递给include

时间:2011-05-08 21:21:31

标签: php server-side-includes

的index.php

<?php
    $title = "This is the page title";
    require_once '/includes/header.php';
?>

的header.php

<head>
    <title><?= $title ?></title>
</head>

输出

enter image description here

4 个答案:

答案 0 :(得分:6)

我认为可能无法启用短标签。尝试:

<title><?php echo $title ?></title>

代替

答案 1 :(得分:5)

你在php.ini中启用了短标签吗?

short link

答案 2 :(得分:2)

我唯一想到的是你的php.ini中禁用了短标签。

尝试以下方法:

<head>
    <title><?php echo $title; ?></title>
</head>

答案 3 :(得分:1)

您需要为short_open_tag

配置PHP