<?php
$b="我的、中国";$reg= "/(.*?)(?:、|\.)(.*?)$/is" ;preg_match($reg,$b,$a);print_r($a);
//预期结果 Array ( [0] => 我的、中国 [1] => 我的 [2] => 中国 )
//实际结果 Array ( [0] => 我的、中国 [1] => 我的 [2] => ⒅泄? )
   
?>