1

索引.php

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

头文件.php

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

输出

在此处输入图像描述

4

4 回答 4

6

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

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

反而

于 2011-05-08T21:23:58.490 回答
5

您是否在 php.ini 中启用了短标签?

短链接

于 2011-05-08T21:23:17.983 回答
2

我唯一的想法是您在 php.ini 中禁用了短标签。

尝试以下操作:

<head>
    <title><?php echo $title; ?></title>
</head>
于 2011-05-08T21:23:48.917 回答
1

你需要配置你的PHPshort_open_tag

于 2011-05-08T21:24:17.570 回答