1
我要運行這個PHP函數 -正則表達式不匹配URL
$querystring_arr='maxResults=50&startIndex=50&sort=date';
$str=preg_replace("(&startIndex=)?[0-9]*(&)?","&startIndex=".$sindex."&",$querystring_arr);
當我print $str
它給人的錯誤:
Warning: preg_replace() [function.preg-replace]: Unknown modifier '\' in C:\xampp\htdocs\myapp\paginator.class.php on line 112
請,哪裏是我的正則表達式錯了嗎?