Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 php 创建了一个联系页面。我正在向数据库中的联系人发送电子邮件。
数据库包含姓名和电子邮件
当我发送电子邮件时,我将 [name] 包含在我的电子邮件中,它必须转换为电子邮件接收者的名称。
谁能帮我做
只需使用字符串替换。
$new = str_replace('[name]', $row['name'], $emailbody); // search, replace, original
-> http://php.net/manual/en/function.str-replace.php