P粉5170907482023-09-04 09:53:31
如果我理解正确的话,您希望允许用户使用以下参数编辑文本模板
{clientName} {selectedVonderName}
然后添加数据库中的实际值(例如 mysql 数据)
在这种情况下,使用 str_replace 来完成这项工作
例如,如果您从 mysql 数据库数据中获取数据,然后将数据分配为 $clientName
和 $selectedVonderName
,则
<?php /// other code $text=".......{clientName} ....{selectedVonderName}"; $text=str_replace("{clientName}", $clientName, $text); $text=str_replace("{selectedVonderName}", $selectedVonderName, $text); /// other code ?>