索引.php
<?php
$title = "This is the page title";
require_once '/includes/header.php';
?>
头文件.php
<head>
<title><?= $title ?></title>
</head>
输出
索引.php
<?php
$title = "This is the page title";
require_once '/includes/header.php';
?>
头文件.php
<head>
<title><?= $title ?></title>
</head>
输出
我认为可能无法启用短标签。尝试:
<title><?php echo $title ?></title>
反而
您是否在 php.ini 中启用了短标签?
我唯一的想法是您在 php.ini 中禁用了短标签。
尝试以下操作:
<head>
<title><?php echo $title; ?></title>
</head>
你需要配置你的PHPshort_open_tag