关于 文本中 包含 xml 结构
$html = 'HTTP/1.1 200 OK Cache-Control: private, max-age=0 Content-Type: text/xml; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 X-Powered-By: ASP.NET Date: Mon, 22 Oct 2012 07:38:15 GMT Connection: close Content-Length: 315
如上..怎么把 $html 中的 字符串 和 xml 分离出来呢?~~~
用的是 php 语言
求大仙..拯救~~~
------解决方案--------------------
preg_match('//is',$html,$match);print_r($match[0]);<br><font color="#e78608">------解决方案--------------------</font><br>echo strstr($html,'<?xml ');<br /><br>你这是抓取的吧,你把头信息去掉不就不用区分了。<div class="clear"> </div>