$string = 'caoyang@sina.com'; // 匹配@之后的部分 $preg = '/(?<=@).*/'; $status = preg_match_all($preg, $string, $matches); echo $status; var_dump($matches);
posted on 2019-05-05 13:51 薇薇123456 阅读(123) 评论(0) 编辑 收藏 举报