可以不加i吗,不加结果也是一样的
//在这里补充代码,实现正则匹配所有li中的数据
$p = '/<li>(.*)<\/li>/';
preg_match_all($p,$str,$matches);
print_r($matches[0]);
打印$matches[0]的结果是右边图那样,为什么?
//在这里补充代码,实现正则匹配所有li中的数据
$p = '/<li>(.*)<\/li>/';
preg_match_all($p,$str,$matches);
print_r($matches[0]);
打印$matches[0]的结果是右边图那样,为什么?
2016-11-03
举报