欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 批量替换内容

程序员文章站 2022-06-10 20:36:45
...
PHP 需要替换的内容:{1_EXP}{2_EXP}{3_EXP}{4_EXP}{5_EXP}{5_EXP}...

需要替换成:PHP 批量替换内容

例如:
{0_EXP} = PHP 批量替换内容
{1_EXP} = PHP 批量替换内容
{2_EXP} = PHP 批量替换内容
...

PHP:
$row['msg'] = str_replace(表达式, 'PHP 批量替换内容', $mycn['msg']);

什么写?还有其他更好的方法不?



回复讨论(解决方案)

$s='{1_EXP}{2_EXP}{3_EXP}{4_EXP}{5_EXP}{5_EXP}';echo preg_replace('/\{(\d+)_EXP\}/','PHP 批量替换内容',$s);