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.
我不是正则表达式的专家,所以也许这个问题有一些正则表达式的基本实现。
首先,我从用户那里检索了一些字符串,其格式如下:
$id =3; $format = {num}/sometext/sometext;
问题是如何{num}用 id 的变量替换,所以结果将是:
{num}
3/sometext/sometext;
它有点像模板引擎。
str_replace("{num}", $id, $format);
你就不能用str_replace('{num}', $id, $format);吗?
str_replace('{num}', $id, $format);