难:求一段代码的正则,该怎么解决
程序员文章站
2022-06-06 15:02:23
...
难:求一段代码的正则
这2段代码是在html中,把html通过file_get_contents下载下来后提取其中的数据,网页地址:http://rate.taobao.com/user-rate-39512.htm
第一个是:提取其中的a标签中的 5810
5810
第二个是:提取其中的a标签中的 23510
23510
------解决方案--------------------
这2段代码是在html中,把html通过file_get_contents下载下来后提取其中的数据,网页地址:http://rate.taobao.com/user-rate-39512.htm
第一个是:提取其中的a标签中的 5810
5810
第二个是:提取其中的a标签中的 23510
23510
------解决方案--------------------
- PHP code
[User:root Time:19:35:14 Path:/home/liangdong/php]$ cat preg.php 581023510EOF;preg_match_all('/(.*)/iUs', $str, $matches);print_r($matches);?> 相关文章
相关视频