将变量传递给包含
index.php
<?php
$title = "This is the page title";
require_once '/includes/header.php';
?>
header.php
<head>
<title><?= $title ?></title>
</head>
输出
index.php
<?php
$title = "This is the page title";
require_once '/includes/header.php';
?>
header.php
<head>
<title><?= $title ?></title>
</head>
Output
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为短标签可能无法启用。尝试:
代替
I think short tags may not be enabled. Try:
instead
您是否在 php.ini 中启用了短标签?
短链接
did you enable short tags in php.ini?
short link
我唯一的想法是你在 php.ini 中禁用了短标签。
请尝试以下操作:
My only thought is that you have short tags disabled in your php.ini.
Try the following:
您需要为
short_open_tag
配置 PHPYou need to configure your PHP for
short_open_tag