标签:
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]);
标签:
原文地址:http://www.cnblogs.com/baochaodouyacai/p/5918013.html