gpt4 book ai didi

php - 在 PHP 中包含模板文件并替换变量

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

我有一个 .tpl 文件,其中包含我的网页的 HTML 代码和一个 .php 文件,我想在其中使用 HTML 代码并替换一些变量。例如,假设这是我的 file.tpl:

<html>
<head>
<title>{page_title}</title>
</head>
<body>
Welcome to {site_name}!
</body>
</html>

我想在我的 php 文件中定义 {page_title}{site_name} 并显示它们。

我们可以做到这一点的一种方法是将页面代码加载到一个变量中,然后替换 {page_title}{site_name} 然后回显它们。

但我不知道这是不是最好的方法,因为我认为如果 .tpl 文件很大会出现一些问题。

请帮我找到最好的方法。谢谢:-)

最佳答案

一种方法:

$replace = array('{page_title}', '{site_name}');
$with = array('Title', 'My Website');

$contents = file_get_contents('my_template.tpl');

echo str_replace($replace, $with, $contents);

更新:删除包含,使用 file_get_contents()

关于php - 在 PHP 中包含模板文件并替换变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20720016/

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