preg_match_all($p,$str,$matches); //正则表达式匹配到的数据 //var_dump($matches); echo $str = join(‘ ‘,$matches); //调用join()一直报Notice: Array to string conversion
原来 $matches 是一个二维数组,正确用法
preg_match_all($p,$str,$matches); //正则表达式匹配到的数据 //var_dump($matches); echo $str = join(‘ ‘,$matches[0]);
时间: 2024-10-05 04:40:28