这篇文章主要为大家详细介绍了php 浅析file_get_contents、curl函数用法,具有一定的参考价值,可以用来参考一下。
对file_get_contents和curl函数用法感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
<?php
// create a new curl resource
$ch = curl_init(); // set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
curl_exec($ch);
// close curl resource, and free up system resources
curl_close($ch);
?>
/**
* @param
* @author 四海网 www.q1010.com
**/
if(function_exists('file_get_contents')) {
$file_contents = file_get_contents($url);
} else {
$ch = curl_init();
$timeout = 5;
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
}
return $file_contents;
if(function_exists('file_get_contents')) {
$file_contents = file_get_contents($url);
} else {
$ch = curl_init();
$timeout = 5;
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
}
return $file_contents;
本文来自:http://www.q1010.com/173/2922-0.html
注:关于php 浅析file_get_contents、curl函数用法的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:file_get_contents,curl
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。