一个正则的写法,之前老忘记所以决定记下来

如果要从一段字符串的中间某个位置开始匹配后面所有的内容,正则写法

例如URL中匹配?号后面所有的内容

<?php
$a = 'case-list.html?type=10';
$b = preg_replace("/\?([^\?]+)/","",$a);
preg_match_all("/\?[^\?]+/",$a,$matches);
print_r($matches);

 

posted @ 2012-12-17 17:12  aluode  阅读(150)  评论(0编辑  收藏  举报