php正则获取一段内容

2025-01-01 05:16:32
推荐回答(1个)
回答1:

$str='{mp3:"123dad555"}).jPlayer( "play" )';
preg_match('/\{mp3\:\"(.*?)\"/is',$str,$m);
echo $m[1];