时时商务社区

标题: php怎么调用远程数据?实现代码 [打印本页]

作者: wx_pylelnL4    时间: 2018-2-18 04:36

                  本文介绍了php调用远程数据的方法,php curl调用远程数据的例子,需要的朋友参考下。
默认不打开文件系统和流配置选项 allow_url_fopen ,建议使用一个替代的函数模块 cURL。
php cURL 远程读取数据的方法:
例1,allow_url_fopen = On:

代码示例str = file_get_contents("http://www.mycodes.net");
if ($str !== false) {
// do something with the content
echo $str;
}
?>例2,allow_url_fopen = Off:

代码示例ch = curl_init("http://www.mycodes.net/");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$str = curl_exec($ch);
if ($str !== false) {
// do something with the content
echo $str;
}
curl_close($ch);
?>





欢迎光临 时时商务社区 (http://bbs.4435.cn/) Powered by Discuz! X3.2