正则时防止贪婪模式(就近原则)

发布于 2016-01-04 17:59:54

例子:$tt='test test test'

preg_match_all('[t([^t]*)t]',$tt,$new);

或者 (.*?)

结果:test

0 条评论

发布
问题