当前位置:Gxlcms > PHP教程 > php正则处置两个字符串间的数据

php正则处置两个字符串间的数据

时间:2021-07-01 10:21:17 帮助过:25人阅读

php 正则处理 两个字符串间的数据

?

?

$str=' this is my string{parent_id} hello';
if( preg_match("/{(.+?)}/isU",$str,$res)) echo $res[1];
#print_r($res);

结果
输出parent_id

人气教程排行