用php获取文本中的某一段代码
<tdheight="25"bgcolor="#ffffff"><a>标题</a></td><tdheight="25"bgcolor="#ffffff"align="c...
<td height="25" bgcolor="#ffffff"><a>标题</a></td>
<td height="25" bgcolor="#ffffff" align="center"><a>标题</a></td>
提取<td height="25" bgcolor="#ffffff"><a>标题</a></td>这一条中的<a>标题</a>
用php获取 展开
<td height="25" bgcolor="#ffffff" align="center"><a>标题</a></td>
提取<td height="25" bgcolor="#ffffff"><a>标题</a></td>这一条中的<a>标题</a>
用php获取 展开
推荐于2016-01-31
展开全部
<?php
$str='<td height="25" bgcolor="#ffffff"><a>标题</a></td><td height="25" bgcolor="#ffffff" align="center"><a>标题</a></td>';
$pa = '%<td.*?>(.*?)</td>%sim';
preg_match_all($pa,$str,$arr);
print_r($arr[1]);
追问
不获取标题这一条里的
追答
能再懒一点吗你
<?php
$str='<td height="25" bgcolor="#ffffff"><a>标题2</a></td><td height="25" bgcolor="#ffffff" align="center"><a>标题1</a></td>';
$pa = '%<td height="25" bgcolor="#ffffff">(.*?)</td>%sim';
preg_match_all($pa,$str,$arr);
print_r($arr[1]);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询