gpt4 book ai didi

php - PHP可以将html命令写入另一个文件吗?

转载 作者:太空宇宙 更新时间:2023-11-04 14:23:22 25 4
gpt4 key购买 nike

我有一个问题想问你。

我有 2 个 PHP 文件,第一个是 index.php,另一个是 body.php

index.php 包含类似 HTML 模板

<html>
<head>
<title></title>
</head>
<body>
<? include('body.php') ?>
</body>
</html>

和body.php从数据库中查询数据(如姓名、昵称、年龄)。

我需要 body.php 来更改标签或在 index.php 中添加更多标签

我应该如何使用 PHP 命令?

谢谢

最佳答案

在您的示例中,body.php 可以包含您需要的任何 HTML 输出。 body.php 的输出将包含在您的最终输出中。

如果您需要使 index.php 的最终输出依赖于 body.php 文件,(例如插入标题)您可以加载您的内容成变量,稍后可以输出。

<? 
include ('body.php');
/* $title and $bodyHTML are set in the include file */
?>


<html>
<head>
<title><? echo $title; ?></title>
</head>
<body>
<? echo $bodyHTML;?>
</body>
</html>

关于php - PHP可以将html命令写入另一个文件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6261346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com