PHP 使用cURL PHP从URL获取数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 使用cURL PHP从URL获取数据相关的知识,希望对你有一定的参考价值。

<?php
$url='http://twitter.com/statuses/user_timeline/16387631.json'; //rss link for the twitter timeline
print_r(get_data($url)); //dumps the content, you can manipulate as you wish to
 
/* gets the data from a URL */
 
function get_data($url)
{
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
?>

以上是关于PHP 使用cURL PHP从URL获取数据的主要内容,如果未能解决你的问题,请参考以下文章

PHP 从 URL 获取数据

使用 CURL 从 URL 获取 XML 在 PHP 更新后停止工作

php curl没有从youtube API获取数据[重复]

使用cURL PHP获取instagram公共JSON feed

php – cURL从重定向获取url

使用 curl 和 php 从 url 读取 xml 数据