<?php $str = "<ul> <li>item 1</li> <li>item 2</li> </ul>"; //在这里补充代码,实现正则匹配所有li中的数据 //$p = "|<[^>]+>(.*?)</[^>]+>|i"; $p="/<li>(.*?)<\/li>/i"; preg_match_all($p, $str, $matches); print_r($matches[1]);
illmy
2014-08-29
举报
0/150
提交
取消