我希望用户可以创建自己的模板来发送电子邮件,并寻找可以添加自己的参数的方式,我可以捕获参数并添加数据库中的实际值。
我正在使用 Simiditor 编辑文本
(https://i.stack.imgur.com/w0JE3.png)](https://i.stack.imgur.com/w0JE3.png)
暂时还没有找到好的解决办法
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
如果我理解正确的话,您希望允许用户使用以下参数编辑文本模板
{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 ?>