本文整理汇总了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;
}
示例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;
}