<?php $str = "
"; //在这里补充代码,实现正则匹配所有li中的数据 $pattern = "#<[^>]+>(.*)
]+>#i"; preg_match_all($pattern,$str,$matches); print_r($matches[1]); --支持