PHP 위 챗 현금 인출 기능 구현(위 챗 몰)

현금 인출 은 반드시 쌍방 향 증 서 를 사용 해 야 하기 때문에 여러분 들 은 반드시 위 챗 의 상점 플랫폼 에서 해당 하 는 곳 을 찾 아서 설정 해 야 합 니 다.이 현금 인출 을 한 지 오래 되 었 기 때문에 위 챗 상점 플랫폼 을 설치 한 곳 은 그림 이 없 는 상황 이 고 다음 에 현금 인출 을 할 때 여러분 들 에 게 상점 플랫폼 을 어떻게 설치 하 는 지 공유 하 는 것 이 어렵 지 않 습 니 다.아래 에 코드 를 붙이다
주의사항:상인 이 돈 을 지불 할 때 상인 이 사용 할 수 있 는 잔액 에서 돈 을 줄 이기 때문에 상인 이 사용 할 수 있 는 잔액 이 충분 하도록 확보 하 는 동시에 공식 문서 의 지불 규칙 에 도 주의한다.
봉인 인출 방법

function tixian($money){
  $appid = "################";//    appid
  $secret = "##########";//api  
  $mch_id = "#######";//   
  $mch_no = "#######";
  $openid="123456789";//    openid

  $arr = array();
  $arr['mch_appid'] = $appid;
  $arr['mchid'] = $mch_id;
  $arr['nonce_str'] = ugv::randomid(20);//     ,   32 
  $arr['partner_trade_no'] = '1298016501' . date("Ymd") . rand(10000, 90000) . rand(10000, 90000);//     
  $arr['openid'] = $openid;
  $arr['check_name'] = 'NO_CHECK';//          ,     
  $arr['amount'] = $money;//    ,    
  $desc = "###  ";
  $arr['desc'] = $desc;//    
  $arr['spbill_create_ip'] = '192.168.0.1';//      ip
  //          
  $notify = new Notify_pub();
  $notify->weixin_app_config = array();
  $notify->weixin_app_config['KEY'] = $mch_no;

  $arr['sign'] = $notify->getSign($arr);//  

  $var = $notify->arrayToXml($arr);
  $xml = $this->curl_post_ssl('https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers', $var, 30, array(), 1);
  $rdata = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
  $return_code = (string)$rdata->return_code;
  $result_code = (string)$rdata->result_code;
  $return_code = trim(strtoupper($return_code));
  $result_code = trim(strtoupper($result_code));

  if ($return_code == 'SUCCESS' && $result_code == 'SUCCESS') {
   $isrr = array(
    'con'=>'ok',
    'error' => 0,
   );
  } else {
   $returnmsg = (string)$rdata->return_msg;
   $isrr = array(
    'error' => 1,
    'errmsg' => $returnmsg,
   );

  }
  return json_encode($isrr);
}
사용 하 는 curlpost_ssl()

function curl_post_ssl($url, $vars, $second = 30, $aHeader = array())
 {
  $isdir = "/cert/";//    
  $ch = curl_init();//   curl
  curl_setopt($ch, CURLOPT_TIMEOUT, $second);//        
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//               
  curl_setopt($ch, CURLOPT_URL, $url);//      
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);//           
  curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);//
  curl_setopt($ch, CURLOPT_SSLCERTTYPE, 'PEM');//    
  curl_setopt($ch, CURLOPT_SSLCERT, $isdir . 'apiclient_cert.pem');//    
  curl_setopt($ch, CURLOPT_SSLKEYTYPE, 'PEM');//CURLOPT_SSLKEY           
  curl_setopt($ch, CURLOPT_SSLKEY, $isdir . 'apiclient_key.pem');//    
  curl_setopt($ch, CURLOPT_CAINFO, 'PEM');
  curl_setopt($ch, CURLOPT_CAINFO, $isdir . 'rootca.pem');
  if (count($aHeader) >= 1) {
   curl_setopt($ch, CURLOPT_HTTPHEADER, $aHeader);//    
  }
  curl_setopt($ch, CURLOPT_POST, 1);//post    
  curl_setopt($ch, CURLOPT_POSTFIELDS, $vars);//      HTTP    "POST"     
  $data = curl_exec($ch);//    
  if ($data) {
   curl_close($ch);
   return $data;
  } else {
   $error = curl_errno($ch);
   echo "call faild, errorCode:$error
"; curl_close($ch); return false; } }
구체 적 인 서명 알고리즘 에 대해 서 는 위 챗 공식 문 서 를 참고 할 수 있 습 니 다.
간단 한 시범 서명 알고리즘:

//          $data
ksort($data);//  
//  URL      ( key1=value1&key2=value2…)      
$str='';
foreach($data as $k=>$v) {
 $str.=$k.'='.$v.'&';
}
//  API  
$str.='key='.$secrect;
$data['sign']=md5($str);//  
배열 을 xml 형식 으로 변환 합 니 다(간단 한 방법):

//      
function arraytoxml($data){
 $str='<xml>';
 foreach($data as $k=>$v) {
  $str.='<'.$k.'>'.$v.'</'.$k.'>';
 }
 $str.='</xml>';
 return $str;
}
xml 형식 을 배열 로 변환 합 니 다:

function xmltoarray($xml) { 
  //      xml   
 libxml_disable_entity_loader(true); 
 $xmlstring = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA); 
 $val = json_decode(json_encode($xmlstring),true); 
 return $val;
}
다음은 ThinkpHP 5 패키지 의 현금 인출 류 를 살 펴 보 겠 습 니 다.

<?php
namespace Home\Controller;
use Think\Controller;
class TixianController extends Controller{
 //    -》     -》  
 private $app_id1 = '';  //appid
 private $app_secret1 = ''; //secreat
 private $apikey1 = ''; //    
 private $mchid1 = 's';  //   
  private $app_id=null;
  private $app_secret=null;
  private $apikey=null;
  private $mchid=null;
 public $error=0;
 public $state = '';
 //  ,        
 public $amount = '0';
 //     ,        
 public $order_sn = '';
 //  openid,        
 public $openid = '';
 //        -------》
 public function actionAct_tixian()
 {
  $this->state=md5(uniqid(rand(), TRUE));
  $this->amount=I('amount');//  POST    
  $this->order_sn=rand(100,999).date('YmdHis'); //         
  $this->openid= I('openid'); //    POST     OPENID
  $user_id = I('user_id');
  $this->app_id=$this->app_id1;
  $this->app_secret=$this->app_secret1;
  $this->apikey=$this->apikey1;
  $this->mchid=$this->mchid1;
  $xml=$this->tiXianAction();
  $result=simplexml_load_string($xml);
  if($result->return_code=='SUCCESS' && $result->result_code=='SUCCESS') {
    $cash = D('cash');
    $data['user_id'] = $user_id;
    $data['amount'] = $this->amount;
    $res = $cash->where('user_id="'.$user_id.'"')->find();
    if($res){
     $res2 = $cash->where('user_id="'.$user_id.'"')->setInc('amount',$this->amount);
     $res4 = D('member')->where('user_id="'.$user_id.'"')->setDec('user_balance',$this->amount);
    }else{
     $res3 = $cash->add($data);
    }
   $output = array('code' => 1, 'data' => $result->result_code, 'info' => '    ');
   exit(json_encode($output));
  }else{
   $output = array('code' => 2, 'data' => $xml, 'info' => '    ');
   exit(json_encode($output));
  }
 }
 /**
 *       ,     
 * @param $openid   openid     
 * @return
 */
 //      
 public function tiXianAction(){
  //  xml  
  $data=$this->getdataXml($this->openid);
  $ch = curl_init ();
  //    
  $MENU_URL="https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers";
  curl_setopt ( $ch, CURLOPT_URL, $MENU_URL );
  curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "POST" );
  curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
  curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );
  //    ,      
  curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM');
  curl_setopt($ch,CURLOPT_SSLCERT, 'C:\web\www\Home\wx_pay\apiclient_cert.pem'); //              、
  curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM');
  curl_setopt($ch,CURLOPT_SSLKEY, 'C:\web\www\Home\wx_pay\apiclient_key.pem');//           、
  //$zs1=dirname(dirname(__FILE__)).'\wx_pay\apiclient_cert.pem';
  //$zs2=dirname(dirname(__FILE__)).'\wx_pay\apiclient_key.pem';
  //show_bug($zs1);
  //curl_setopt($ch,CURLOPT_SSLCERT,$zs1);
  //curl_setopt($ch,CURLOPT_SSLKEY,$zs2);
  // curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01;
  // Windows NT 5.0)');
  //curl_setopt ( $ch, CURLOPT_FOLLOWLOCATION, 1 );
  curl_setopt ( $ch, CURLOPT_AUTOREFERER, 1 );
  curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
  curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
  $info = curl_exec ( $ch );
  //    
  if($info){
   curl_close($ch);
   return $info;
  } else {
   $error = curl_errno($ch);
   curl_close($ch);
   return "curl  ,   :$error";
  }
 }
 /**
 *          
 * @param $openid   openid     
 * @return xml
 */
 private function getdataXml($openid){
  //     
  $dataArr=array(
   'amount'=>$this->amount*100,//  (     ,    100)
   'check_name'=>'NO_CHECK',//        ,NO_CHECK:        FORCE_CHECK:       (             ,    )OPTION_CHECK:                 (          ,      )
   'desc'=>'  ',//  
   'mch_appid'=>$this->app_id,
   'mchid'=>$this->mchid,//   
   'nonce_str'=>rand(100000, 999999),//   32     
   'openid'=>$openid,//      
   'partner_trade_no'=>$this->order_sn,//     
   're_user_name'=>'',//    ,check_name NO_CHECK     
   'spbill_create_ip'=>$_SERVER["REMOTE_ADDR"],//   ip
  );
  //    
  $sign=$this->getSign($dataArr);
  //xml  
  $data="<xml>
   <mch_appid>".$dataArr['mch_appid']."</mch_appid>
   <mchid>".$dataArr['mchid']."</mchid>
   <nonce_str>".$dataArr['nonce_str']."</nonce_str>
   <partner_trade_no>".$dataArr['partner_trade_no']."</partner_trade_no>
   <openid>".$dataArr['openid']."</openid>
   <check_name>".$dataArr['check_name']."</check_name>
   <re_user_name>".$dataArr['re_user_name']."</re_user_name>
   <amount>".$dataArr['amount']."</amount>
   <desc>".$dataArr['desc']."</desc>
   <spbill_create_ip>".$dataArr['spbill_create_ip']."</spbill_create_ip>
   <sign>".$sign."</sign>
   </xml>";
  return $data;
 }
 /**
 *    :     ,        
 */
 private function formatBizQueryParaMap($paraMap, $urlencode)
 {
  $buff = "";
  ksort($paraMap);
  foreach ($paraMap as $k => $v)
  {
   if($v){
   if($urlencode)
   {
    $v = urlencode($v);
   }
   $buff .= $k . "=" . $v . "&";
   }
  }
  $reqPar=NULL;
  if (strlen($buff) > 0)
  {
   $reqPar = substr($buff, 0, strlen($buff)-1);
  }
  return $reqPar;
 }
 /**
 *    :    
 */
 private function getSign($Obj)
 {
  foreach ($Obj as $k => $v)
  {
   $Parameters[$k] = $v;
  }
  //     :        
  ksort($Parameters);
  $String = $this->formatBizQueryParaMap($Parameters, false);
  //echo '【string1】'.$String.'</br>';
  //     : string   KEY
  $String = $String."&key=".$this->apikey;
  //echo "【string2】".$String."</br>";
  //     :MD5  
  $String = md5($String);
  //echo "【string3】 ".$String."</br>";
  //     :        
  $result_ = strtoupper($String);
  //echo "【result】 ".$result_."</br>";
  return $result_;
 }
 //-----------
 private function http($url, $method='POST', $postfields = null, $headers = array())
 {
  header("Content-Type:text/html;charset=utf-8");
  $ch = curl_init();
  /* Curl settings */
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_POSTFIELDS, "");
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // https         hosts
  curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  curl_setopt($ch, CURLOPT_TIMEOUT, 30);
  switch ($method){
   case 'POST':
   curl_setopt($ch,CURLOPT_POST, true);
   break;
  }
  curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);
  curl_setopt($ch, CURLINFO_HEADER_OUT, true);
  $response = curl_exec($ch);
  $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); //       
  curl_close($ch);
  return array($http_code, $response);
 }
}
총결산
위 에서 말 한 것 은 편집장 이 여러분 에 게 소개 한 PHP 가 위 챗 현금 인출 기능 을 실현 하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 저 에 게 메 시 지 를 남 겨 주세요.편집장 은 바로 여러분 에 게 답장 을 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
만약 당신 이 본문 이 당신 에 게 도움 이 된다 고 생각한다 면,전 재 를 환영 합 니 다.번 거 로 우 시 겠 지만 출처 를 밝 혀 주 십시오.감사합니다!

좋은 웹페이지 즐겨찾기