如何从包含的文件中读取 PHP 变量并将其回显到文本区域或输入标签中作为 {var_name}

How to read PHP variable from an included file and echo it into textarea or input tags as {var_name}

我的textarea字段是这样的:

<textarea type="text" id="tos"><?php echo $tos; ?></textarea> 输出是:

Terms of Service of 'Website Name'
1. Term one
2. Term two
3. Term three
4. Term four
5. Term five

如何将 'Website Name' 作为 php 回显以从包含的文件或数据库 table 中获取站点名称而不是手动输入?文件中的 var 是 $site.

我不能在文本框中使用 php 标签,所以如何使用 {site}{sitename} 从包含文件中的 var $site 获取值?

您可以使用此功能str_replace($search, $replace, $subject)将“网站名称”占位符替换为网站的实际名称。

像这样:

<textarea type="text" id="tos"><?php $tos = str_replace("Website Name", $site, $tos); echo $tos; ?></textarea>