怎么获取远程网页的html代码,file_get_contents不起作用
程序员文章站
2022-05-29 16:12:43
...
如何获取远程网页的html代码,file_get_contents不起作用
远程地址:http://rate.taobao.com/member_rate.htm?content=1&result=0&from=rate&user_id=281461646&identity=1&rater=0&direction=0&timeLine=-7&callback=shop_rate_list
通过浏览器可以得到,但是通过file_get_contents这个函数却为空,别的还有什么办法?另外得到的数据看着有点像json,但是用json_decode却不能将它转化为数组,求将得到的数据转换数组的方法
------解决方案--------------------
那是js种的json和php的json有点区别,用jQuery获取:
远程地址:http://rate.taobao.com/member_rate.htm?content=1&result=0&from=rate&user_id=281461646&identity=1&rater=0&direction=0&timeLine=-7&callback=shop_rate_list
通过浏览器可以得到,但是通过file_get_contents这个函数却为空,别的还有什么办法?另外得到的数据看着有点像json,但是用json_decode却不能将它转化为数组,求将得到的数据转换数组的方法
------解决方案--------------------
那是js种的json和php的json有点区别,用jQuery获取:
- JScript code
$.getJSON("http://rate.taobao.com/member_rate.htm?content=1&result=0&from=rate&user_id=281461646&identity=1&rater=0&direction=0&timeLine=-7&callback=shop_rate_list", function(json){ alert("JSON Data: " + json); });
------解决方案--------------------
- PHP code
$con= file_get_contents($url); $con= preg_replace('/shop_rate_list\((.*)\)/s','$1',$con); print_r(json_decode(iconv('gbk','utf-8',$con),true));相关文章
相关视频
上一篇: php递归使用示例(php递归函数)
下一篇: PHP程序员的40点陋习_PHP
推荐阅读
-
asp获取远程网页的指定内容的实现代码
-
PHP CURL或file_get_contents获取网页标题的代码及两者效率的稳定性问题
-
解析php通过cookies获取远程网页的指定代码
-
执行、获取远程代码返回:file_get_contents 超时处理的问题详解
-
执行、获取远程代码返回:file_get_contents 超时处理的问题详解_PHP教程
-
解析php通过cookies获取远程网页的指定代码_PHP教程
-
JavaScript实现获取远程的html到当前页面中的示例代码分享
-
怎么获取远程网页的html代码,file_get_contents不起作用
-
执行、获取远程代码返回:file_get_contents 超时处理的问题详解_PHP教程
-
解析php通过cookies获取远程网页的指定代码_PHP