当前位置: 首页>>代码示例>>PHP>>正文


PHP getHttpResponsePOST函数代码示例

本文整理汇总了PHP中getHttpResponsePOST函数的典型用法代码示例。如果您正苦于以下问题:PHP getHttpResponsePOST函数的具体用法?PHP getHttpResponsePOST怎么用?PHP getHttpResponsePOST使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了getHttpResponsePOST函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: buildRequestHttpInFile

 function buildRequestHttpInFile($para_temp, $file_para_name, $file_name)
 {
     $para = $this->buildRequestPara($para_temp);
     $para[$file_para_name] = "@" . $file_name;
     $sResult = getHttpResponsePOST($this->alipay_gateway_new, $this->alipay_config['cacert'], $para, trim(strtolower($this->alipay_config['input_charset'])));
     return $sResult;
 }
开发者ID:keyu199314,项目名称:php,代码行数:7,代码来源:alipay_submit.class.php

示例2: buildRequestHttpInFile

 /**
  * 建立请求,以模拟远程HTTP的POST请求方式构造并获取集付宝的处理结果,带文件上传功能
  * @param $para_temp 请求参数数组
  * @param $file_para_name 文件类型的参数名
  * @param $file_name 文件完整绝对路径
  * @return 集付宝返回处理结果
  */
 function buildRequestHttpInFile($para_temp, $file_para_name, $file_name)
 {
     //待请求参数数组
     $para = $this->buildRequestPara($para_temp);
     $para[$file_para_name] = "@" . $file_name;
     //远程获取数据
     $sResult = getHttpResponsePOST($this->jfb_gateway, $this->jfb_config['cacert'], $para, trim(strtolower($this->jfb_config['input_charset'])));
     return $sResult;
 }
开发者ID:eliu03,项目名称:fanweP2P,代码行数:16,代码来源:jfb_submit.class.php


注:本文中的getHttpResponsePOST函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。