当前位置:首页 > PHP教程 > php应用 > 列表

php跨服务器访问方法小结

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-26 16:51:09 浏览: 评论:0 

这篇文章主要介绍了php跨服务器访问方法,实例总结了常见的php跨服务器访问技巧,非常简单实用,需要的朋友可以参考下。

本文实例总结了php跨服务器访问方法,分享给大家供大家参考,具体分析如下:

近来项目中遇到跨服务器访问的问题,研究了好些日子,总结如下:

1、用file_get_contents方法

  1. $host = 'url';  
  2. $randomNumber=file_get_contents($host); 
  3. echo $$randomNumber

2、用Curl

  1. $host = 'url';  
  2. $ch = curl_init();  
  3. curl_setopt($ch, CURLOPT_URL, $host);  
  4. // 返回结果  
  5. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  6. curl_setopt($ch, CURLOPT_HEADER, 0);  
  7. // 使用POST提交  
  8. curl_setopt($ch, CURLOPT_POST, 1);  
  9. // POST参数  
  10. $str = array('a=1','b=2','c=3');  
  11. curl_setopt($ch, CURLOPT_POSTFIELDS, $str); 
  12. // 结果  
  13. $res = curl_exec($ch);  
  14. curl_close($ch); 

使用curl库,使用curl库之前,你可能需要查看一下php.ini,查看是否已经打开了curl扩展。

3、 用fopen打开url, 以get方式获取内容

  1. <?php 
  2. $url="https://www.phpfensi.com/"
  3. $fp=fopen($url,'r'); 
  4. while(!feof($fp)){ 
  5. $result.=fgets($fp,1024); 
  6. echo" $result"
  7. fclose($fp); 
  8. ?>

Tags: php跨服务器

分享到: