将变量传递给包含

发布于 2024-11-06 11:21:26 字数 392 浏览 0 评论 0原文

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

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

纵性 2024-11-13 11:21:26

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

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

代替

I think short tags may not be enabled. Try:

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

instead

善良天后 2024-11-13 11:21:26

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

短链接

did you enable short tags in php.ini?

short link

如痴如狂 2024-11-13 11:21:26

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

请尝试以下操作:

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

My only thought is that you have short tags disabled in your php.ini.

Try the following:

<head>
    <title><?php echo $title; ?></title>
</head>
家住魔仙堡 2024-11-13 11:21:26

您需要为 short_open_tag 配置 PHP

You need to configure your PHP for short_open_tag

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文