php 위 챗 스 캔 지불 php 공중 번호 지불
7793 단어 php위 챗 페 이 먼 트공중 번호 지불
<?php
#
$url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';
$param = [
'appid' => ' id',
'mch_id' => ' id',
'nonce_str' =>uniqid(),
'sign_type' => 'MD5',
'body' => 'test',
'detail' => 'test detail',
'out_trade_no' => date('Ymd').rand(10000,99999),
'total_fee' => 1,
'notify_url' => 'http://www.test.top/testpay/pay.php',
'trade_type' =>'JSAPI',
];
ksort( $param );
$sign_str = urldecode(http_build_query( $param ));
$sign_str .= '&key= ';
//echo $sign_str;exit;
$sign_str = md5( $sign_str );
$param['sign'] = strtoupper( $sign_str );
function CurlPost($url, $param = [], $is_post = 1, $timeout = 5 )
{
// curl
$curl = curl_init();
//
curl_setopt($curl, CURLOPT_URL, $url);
if ($is_post == 1) {
// POST
curl_setopt($curl, CURLOPT_POST, 0);
}
// 1
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
//
curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
if ($is_post == 1) {
// -- post
if (is_array($param)) {
//http_build_query
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($param));
} else {
curl_setopt($curl, CURLOPT_POSTFIELDS, $param);
}
}
//
$data = $data_str = curl_exec($curl);
//
if ($error = curl_error($curl)) {
$log_data = array(
'url' => $url,
'param' => $param,
'error' => '<span style="color:red;font-weight: bold">' . $error . '</span>',
);
var_dump($log_data);
exit;
}
# CURL
curl_close($curl);
//json
$data = json_decode($data, true);
if (!is_array($data)) {
$data = $data_str;
}
#
$log = [
'url' => $url,
'param' => $param,
'response' => $data_str
];
file_put_contents(__DIR__ . '/wechat.log', print_r($log, true), 8);
return $data;
}
function arr2Xml( $arr ){
$xml = '<xml version="1.0" encoding="UTF-8"> ';
foreach( $arr as $key => $value ){
if (is_numeric($value)){
$xml.="<".$key.">".$value."</".$key.">";
}else{
$xml.="<".$key."><![CDATA[".$value."]]></".$key.">";
}
}
$xml .= '</xml>';
return $xml;
}
$xml = arr2Xml( $param );
$result = CurlPost( $url , arr2Xml($param) );
$api_arr = json_decode( json_encode(simplexml_load_string( $result , 'SimpleXMLElement', LIBXML_NOCDATA) ), true );
if( $api_arr['return_code'] == 'SUCCESS' ){
include __DIR__ . '/phpqrcode.php';
header('content-type:image/png');
echo Qrcode::png( $api_arr['code_url'] , false , 'H' , 6 ,2 );
}
<?php
#
$url='https://api.mch.weixin.qq.com/pay/unifiedorder';
$param=[
# ID
'appid'=>'****',
'mch_id'=>'***',
'nonce_str'=>uniqid(),
'sign_type'=>'MD5',
'body'=>'test',
'detail'=>'detail',
'out_trade_no'=>date('Ymd').rand(10000,99999),
'total_fee'=>1,
'spbill_create_ip'=>$_SERVER['SERVER_ADDR'],
'notify_url'=>'http://****/test.php',
'trade_type'=>'NATIVE',
];
ksort($param);
$sign_str=urldecode(http_build_query($param));
$sign_str.='&key=8934e7d15453e97507ef794cf7b0519d';
$sign_str=md5($sign_str);
$param['sign']=strtoupper($sign_str);
//print_r($param);exit;
function CurlPost($url, $param = [], $is_post = 1, $timeout = 5 )
{
// curl
$curl = curl_init();
//
curl_setopt($curl, CURLOPT_URL, $url);
if ($is_post == 1) {
// POST
curl_setopt($curl, CURLOPT_POST, 0);
}
// 1
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
//
curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
if ($is_post == 1) {
// -- post
if (is_array($param)) {
//http_build_query
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($param));
} else {
curl_setopt($curl, CURLOPT_POSTFIELDS, $param);
}
}
//
$data = $data_str = curl_exec($curl);
//
if ($error = curl_error($curl)) {
$log_data = array(
'url' => $url,
'param' => $param,
'error' => '<span style="color:red;font-weight: bold">' . $error . '</span>',
);
var_dump($log_data);
exit;
}
# CURL
curl_close($curl);
//json
$data = json_decode($data, true);
if (!is_array($data)) {
$data = $data_str;
}
#
$log = [
'url' => $url,
'param' => $param,
'response' => $data_str
];
file_put_contents(__DIR__ . '/wechat.log', print_r($log, true), 8);
return $data;
}
function arrzxml($arr){
$xml='<xml version="1.0" encoding="UTF-8">';
foreach($arr as $key=>$value){
if(is_numeric($value)){
$xml.="<".$key.">".$value."</".$key.">";
}else{
$xml.="<".$key."><![CDATA[".$value."]]></".$key.">";
}
}
$xml.='</xml>';
// var_dump($xml);exit;
return $xml;
}
$xml=arrzxml($param);
$result=CurlPost($url,arrzxml($param));
//echo '<pre/>';
var_dump($result);
exit;
$api_arr=json_decode(simplexml_load_string($result,'SimpleXMLElement',LIBXML_NOCDATA),true);
if($result['return_code']=='SUCCESS'){
include __DIR__.'/phpqrcode.php';
header('content-type:image/png');
echo Qrcode::png($api_arr['code_url'],false,'H',6,2);
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.