打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
php 如何发送http请求和实现https接口
userphoto

2010.12.21

关注

1。输入接口:

https://CRMC URL/ spservice/downring.do? sid =1234 & sidpwd =123456& randomsessionkey =123420031212121212123456& modulecode=z1000XXX&opertype=1&tonecode=1234123412& issendsms =0& backurl=

2。如何发送http请求,最好有例子,谢谢!

 

PHP的文件操作函数几乎都能用来发送http请求:

$html = file_get_contents('http://ww.google.com');
var_dump
($html);

有些网站会对请求头信息进行检测,这时候就需要用到curl了(php.ini中要启用curl扩展),贴一个我一直用的函数:

function fetch_page($site,$url,$params=false)
{
    $ch
= curl_init();
    $cookieFile
= $site . '_cookiejar.txt';
    curl_setopt
($ch, CURLOPT_COOKIEJAR, $cookieFile);
    curl_setopt
($ch, CURLOPT_COOKIEFILE,$cookieFile);
    curl_setopt
($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt
($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt
($ch,   CURLOPT_SSL_VERIFYPEER,   FALSE);
    curl_setopt
($ch, CURLOPT_HTTPGET, true);
    curl_setopt
($ch, CURLOPT_TIMEOUT, 4);
   
if($params)
        curl_setopt
($ch, CURLOPT_POSTFIELDS, $params);
    curl_setopt
($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3');
    curl_setopt
($ch, CURLOPT_URL,$url);

    $result
= curl_exec($ch);
   
//file_put_contents('jobs.html',$result);
   
return $result;
}

调用示例:

$html = fetch_page('google','http://googlel.com','key=value');
var_dump
($html);

如果请求类型是https,则只能用curl了,前者会报(至少默认情况下):

PHP Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP?

如果你说的实现https接口指的是让别人可以用https访问你,那么就需要用openssl生成公私钥,然后编译apache使支持mod_ssl,然后再配置httpd-ssl.conf文件,这些让系统管理员来做吧。。

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
php获取通过http协议post提交过来xml数据及解析xml
php抓取https的内容的代码
关于php 接口问题(php接口主要也就是运用curl,curl函数)
php执行https接口get的方式
PHP curl
访问https资源
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服