关于 文本中 包孕 xml 结构
程序员文章站
2022-04-08 12:15:24
...
关于 文本中 包含 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: 3150 11022153815002472 提交成功 0 ';
如上..怎么把 $html 中的 字符串 和 xml 分离出来呢?~~~
用的是 php 语言
求大仙..拯救~~~
------解决方案--------------------
$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 语言
求大仙..拯救~~~
------解决方案--------------------
- PHP code
preg_match('//is',$html,$match); print_r($match[0]);
------解决方案--------------------
echo strstr($html,'
你这是抓取的吧,你把头信息去掉不就不用区分了。相关文章
相关视频
上一篇: mysql日期比较