如何用PHP替换字符串中的多个%标签%
作者:互联网
替换PHP字符串中的一组短标签的最佳方法是什么,例如:
$return = "Hello %name%, thank you for your interest in the %product_name%. %representative_name% will contact you shortly!";
我将定义%name%是某个字符串,来自数组或对象,例如:
$object->name;
$object->product_name;
等等..
我知道我可以在字符串上多次运行str_replace,但我想知道是否有更好的方法.
谢谢.
解决方法:
如果您知道要替换的占位符,str_replace()似乎是一个理想的选项.这只需要运行一次而不是多次.
$input = "Hello %name%, thank you for your interest in the %product_name%. %representative_name% will contact you shortly!";
$output = str_replace(
array('%name%', '%product_name%', '%representative_name%'),
array($name, $productName, $representativeName),
$input
);
标签:php,string,str-replace 来源: https://codeday.me/bug/20190712/1442811.html