<?php//请修改变量p的正则表达式,使他能够匹配str中的电话$p = '/^我[^\s]+(7|8)$/';$str = "我的电话是010-12345678";preg_match($p, $str, $match);echo $match[0];