日期:2014-05-17 浏览次数:20463 次
<ul id="ul1">
<li>1</li>
<li>2</li>
</ul>
<?php
$str = 'afdasdfdsa<ul id="ul1">
<li>1</li>
<li>2</li>
</ul>asdfasdfasd<ul id="ul2">
<li>3</li>
<li>4</li>
</ul>fdsgsdfg';
preg_match_all('/<ul[^>]*>.*<\/ul>/isU', $str, $matches);
print_r($matches[0]);
?>
<?php
$str = '<ul id="ul1">
<li>1</li>
<li>2</li>
</ul>
<ul id="ul1">
<li>3</li>
</ul>
<ul id="ul1">
<li>4</li>
<li>5</li>
<li>6</li>
</ul>';
preg_match_all('/<ul.*?>.*?<\/ul>/s', $str, $matches);
var_dump($matches);