分享封装的一个PHP微信支付的类库(扫码、H5、小程序)

 5258

在我们编写相关支付的时候,经常会使用微信支付,在php中使用微信支付还是比较简单的

微信支付文档:https://pay.weixin.qq.com/wiki/doc/api/index.html

这里简单介绍微信支付的几种使用,这里微信支付我封装了一个微信支付的类库,直接传递参数就可使用:

首先把配置文件填写完整(细心不要填错,否则会导致签名错误):

  1. $config = array(
  2.     'appid'         => '', // 微信支付appid
  3.     'xcxappid'      => '', // 微信小程序appid
  4.     'mch_id'        => '', // 微信支付 mch_id 商户收款账号
  5.     'key'           => '', // 微信支付key
  6.     'appsecret'     => '', // 公众帐号secert(公众号支付专用)
  7.     'notify_url'    => '', // 接收支付状态的连接  改成自己的回调地址
  8.     'redirect_uri'  => '', // 公众号支付时,没有code,获取openid使用
  9. );

对于相关支付我也也成了函数便于使用,

微信扫码支付

  1. /**
  2.  * [qrcodePay 微信扫码支付]
  3.  * @param  [type] $order [订单信息数组]
  4.  * @return [type]        [description]
  5.  * $order = array(
  6.  *      'body'          => '', // 产品描述
  7.  *      'total_fee'     => '', // 订单金额(分)
  8.  *      'out_trade_no'  => '', // 订单编号
  9.  *      'product_id'    => '', // 产品id(可用订单编号)
  10.  * );
  11.  */
  12. public static function qrcodePay($order=NULL)
  13. {
  14.     if(!is_array($order) || count($order) < 4){
  15.         die("数组数据信息缺失!");
  16.     }
  17.     $order['trade_type'] = 'NATIVE'; // Native支付
  18.     $result = self::unifiedOrder($order);
  19.     $decodeurl = urldecode($result['code_url']);
  20.     return $decodeurl; // 使用返回链接直接生成二维码
  21. }

微信H5支付:

  1. /**
  2.  * [weixinH5 微信H5支付]
  3.  * @param  [type] $order [订单信息数组]
  4.  * @return [type]        [description]
  5.  * $order = array(
  6.  *      'body'          => '', // 产品描述
  7.  *      'total_fee'     => '', // 订单金额(分)
  8.  *      'out_trade_no'  => '', // 订单编号
  9.  *      'product_id'    => '', // 产品id(可用订单编号)
  10.  * );
  11.  */
  12. public static function h5Pay($order=NULL)
  13. {
  14.     if(!is_array($order) || count($order) < 4){
  15.         die("数组数据信息缺失!");
  16.     }
  17.     $order['trade_type'] = 'MWEB'; // H5支付
  18.     $result = self::unifiedOrder($order);
  19.     if ($result['return_code']=='SUCCESS' && $result['result_code']=='SUCCESS')
  20.         return $result['mweb_url']; // 返回链接让用户点击跳转
  21.     if ($result['err_code_des'])
  22.         die($result['err_code_des']);
  23.     return false;
  24. }

微信小程序支付:

  1. /**
  2.  * [xcxPay 获取jssdk需要用到的数据]
  3.  * @param  [type]  $order [订单信息数组]
  4.  * @param  boolean $type  [区分是否是小程序,默认 true]
  5.  * @return [type]         [description]
  6.  * $order = array(
  7.  *      'body'          => '', // 产品描述
  8.  *      'total_fee'     => '', // 订单金额(分)
  9.  *      'out_trade_no'  => '', // 订单编号
  10.  *      'product_id'    => '', // 产品id(可用订单编号)
  11.  *      'openid'        => '', // 用户openid
  12.  * );
  13.  */
  14. public static function xcxPay($order=NULL,$type=true)
  15. {
  16.     if(!is_array($order) || count($order) < 5){
  17.         die("数组数据信息缺失!");
  18.     }
  19.     $order['trade_type'] = 'JSAPI'; // 小程序支付
  20.     $result = self::unifiedOrder($order,$type);
  21.     if ($result['return_code']=='SUCCESS' && $result['result_code']=='SUCCESS') {
  22.         $data = array (
  23.             'appId'     => $type ? $this->config['xcxappid'] : $this->config['appid'],
  24.             'timeStamp' => time(),
  25.             'nonceStr'  => self::get_rand_str(32, 0, 1), // 随机32位字符串
  26.             'package'   => 'prepay_id='.$result['prepay_id'],
  27.             'signType'  => 'MD5', // 加密方式
  28.         );
  29.         $data['paySign'] = self::makeSign($data);
  30.         return $data; // 数据小程序客户端
  31.     } else {
  32.         if ($result['err_code_des'])
  33.             die($result['err_code_des']);
  34.         return false;
  35.     }
  36. }

使用方法(这里已小程序支付为示例):

  1. <?php
  2. include './WeixinPay.php';
  3. $get = $_GET;
  4. $weixinpay = new \feng\WeixinPay($config);
  5. $order_sn = time().rand(1000,9999);
  6. $order = array(
  7.     'body'          => '测试商品', // 产品描述
  8.     'total_fee'     => '1', // 订单金额(分)
  9.     'out_trade_no'  => $order_sn, // 订单编号
  10.     'product_id'    => $order_sn, // 产品id(可用订单编号)
  11.     'openid'        => $get['openid'], // 用户openid
  12. );
  13. $re = $weixinpay->xcxPay($order);
  14. die(json_encode($re)); // JSON化直接返回小程序客户端

如下代码是封装好的完整支付类文件(WeixinPay.php),可以根据自己需求随意修改(不定期修改完善 Gitee 与 GitHub):

  1. <?php
  2. /**
  3.  * @Author: [FENG] <1161634940@qq.com>
  4.  * @Date:   2019-09-06 09:50:30
  5.  * @Last Modified by:   [FENG] <1161634940@qq.com>
  6.  * @Last Modified time: 2020-10-08T17:33:39+08:00
  7.  */
  8. namespace feng;
  9. error_reporting(E_ALL);
  10. ini_set('display_errors', '1');
  11. // 定义时区
  12. ini_set('date.timezone','Asia/Shanghai');
  13. class WeixinPay
  14. {
  15.     // 定义相关配置项
  16.     private static $sslcert_path = './cert/apiclient_cert.pem'; // 证书(退款时使用)
  17.     private static $sslkey_path = './cert/apiclient_key.pem'; // 证书(退款时使用)
  18.     private static $referer = '';
  19.     private static $config = array(
  20.         'appid'         => '', // 微信支付appid
  21.         'xcxappid'      => '', // 微信小程序appid
  22.         'mch_id'        => '', // 微信支付 mch_id 商户收款账号
  23.         'key'           => '', // 微信支付key
  24.         'appsecret'     => '', // 公众帐号secert(公众号支付专用)
  25.         'notify_url'    => '', // 接收支付状态的连接  改成自己的回调地址
  26.         'redirect_uri'  => '', // 公众号支付时,没有code,获取openid使用
  27.     );
  28.     /**
  29.      * [__construct 构造函数]
  30.      * @param [type] $config [传递微信支付相关配置]
  31.      */
  32.     public function __construct($config=NULL, $referer=NULL){
  33.         $config && self::$config = $config;
  34.         self::$referer = $referer ? $referer : $_SERVER['HTTP_HOST'];
  35.     }
  36.     /**
  37.      * [unifiedOrder 统一下单]
  38.      * @param  [type]  $order [订单信息(必须包含支付所需要的参数)]
  39.      * @param  boolean $type  [区分是否是小程序,是则传 true]
  40.      * @return [type]         [description]
  41.      * $order = array(
  42.      *      'body'          => '', // 产品描述
  43.      *      'total_fee'     => '', // 订单金额(分)
  44.      *      'out_trade_no'  => '', // 订单编号
  45.      *      'product_id'    => '', // 产品id
  46.      *      'trade_type'    => '', // 类型:JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
  47.      * );
  48.      */
  49.     public static function unifiedOrder($order, $type=NULL)
  50.     {
  51.         $weixinpay_config = array_filter(self::$config);
  52.         // 获取配置项
  53.         $config = array(
  54.             'appid'             => empty($type) ? $weixinpay_config['appid'] : $weixinpay_config['xcxappid'],
  55.             'mch_id'            => $weixinpay_config['mch_id'],
  56.             'nonce_str'         => 'test',
  57.             'spbill_create_ip'  => self::get_iP(),
  58.             'notify_url'        => $weixinpay_config['notify_url']
  59.         );
  60.         $data = array_merge($order, $config); // 合并配置数据和订单数据
  61.         $sign = self::makeSign($data); // 生成签名
  62.         $data['sign'] = $sign;
  63.         $xml = self::array_to_xml($data);
  64.         $url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';//接收xml数据的文件
  65.         $header[] = "Content-type: text/xml";//定义content-type为xml,注意是数组
  66.         $ch = curl_init ($url);
  67.         curl_setopt($ch, CURLOPT_URL, $url);
  68.         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  69.         curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 兼容本地没有指定curl.cainfo路径的错误
  70.         curl_setopt($ch, CURLOPT_REFERER, self::$referer);        //设置 referer
  71.         curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  72.         curl_setopt($ch, CURLOPT_POST, 1);
  73.         curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
  74.         $response = curl_exec($ch);
  75.         if(curl_errno($ch)){
  76.             die(curl_error($ch)); // 显示报错信息;终止继续执行
  77.         }
  78.         curl_close($ch);
  79.         $result = self::xml_to_array($response);
  80.         if ($result['return_code']=='FAIL')
  81.             die($result['return_msg']); // 显示错误信息
  82.         if ($result['result_code']=='FAIL')
  83.             die($result['err_code_des']); // 显示错误信息
  84.         $result['sign'] = $sign;
  85.         $result['nonce_str'] = 'test';
  86.         return $result;
  87.     }
  88.     /**
  89.      * [qrcodePay 微信扫码支付]
  90.      * @param  [type] $order [订单信息数组]
  91.      * @return [type]        [description]
  92.      * $order = array(
  93.      *      'body'          => '', // 产品描述
  94.      *      'total_fee'     => '', // 订单金额(分)
  95.      *      'out_trade_no'  => '', // 订单编号
  96.      *      'product_id'    => '', // 产品id(可用订单编号)
  97.      * );
  98.      */
  99.     public static function qrcodePay($order=NULL)
  100.     {
  101.         if(!is_array($order) || count($order) < 4){
  102.             die("数组数据信息缺失!");
  103.         }
  104.         $order['trade_type'] = 'NATIVE'; // Native支付
  105.         $result = self::unifiedOrder($order);
  106.         $decodeurl = urldecode($result['code_url']);
  107.         return $decodeurl;
  108.         // qrcode($decodeurl);
  109.         // qrcodeWithPicture($decodeurl);
  110.     }
  111.     /**
  112.      * [jsPay 获取jssdk需要用到的数据]
  113.      * @param  [type] $order [订单信息数组]
  114.      * @return [type]        [description]
  115.      * $order = array(
  116.      *      'body'          => '', // 产品描述
  117.      *      'total_fee'     => '', // 订单金额(分)
  118.      *      'out_trade_no'  => '', // 订单编号
  119.      *      'product_id'    => '', // 产品id(可用订单编号)
  120.      * );
  121.      */
  122.     public static function jsPay($order=NULL,$code=NULL){
  123.         $config=self::$config;
  124.         if (!is_array($order) || count($order) < 4)
  125.             die("数组数据信息缺失!");
  126.         if (count($order) == 5) {
  127.             $data = self::xcxPay($order, false); // 获取支付相关信息(获取非小程序信息)
  128.             return $data;
  129.         }
  130.         empty($code) && $code = $_GET['code'];
  131.         // 如果没有get参数没有code;则重定向去获取openid;
  132.         if (empty($code)) {
  133.             $out_trade_no = $order['out_trade_no']; // 获取订单号
  134.             $redirect_uri = $config['redirect_uri']; // 返回的url
  135.             $redirect_uri = urlencode($redirect_uri);
  136.             $url = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid='.$config['appid'].'&redirect_uri='.$redirect_uri.'&response_type=code&scope=snsapi_base&state='.$out_trade_no.'#wechat_redirect';
  137.             header('Location: '.$url);
  138.         } else {
  139.             // 组合获取prepay_id的url
  140.             $url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$config['appid'].'&secret='.$config['appsecret'].'&code='.$code.'&grant_type=authorization_code';
  141.             $result = self::curl_get_contents($url); // curl获取prepay_id
  142.             $result = json_decode($result,true);
  143.             $order['openid'] = $result['openid']; // 获取到的openid
  144.             $data = self::xcxPay($order, false); // 获取支付相关信息(获取非小程序信息)
  145.             return $data;
  146.         }
  147.     }
  148.     /**
  149.      * [xcxPay 获取jssdk需要用到的数据]
  150.      * @param  [type]  $order [订单信息数组]
  151.      * @param  boolean $type  [区分是否是小程序,默认 true]
  152.      * @return [type]         [description]
  153.      * $order = array(
  154.      *      'body'          => '', // 产品描述
  155.      *      'total_fee'     => '', // 订单金额(分)
  156.      *      'out_trade_no'  => '', // 订单编号
  157.      *      'product_id'    => '', // 产品id(可用订单编号)
  158.      *      'openid'        => '', // 用户openid
  159.      * );
  160.      */
  161.     public static function xcxPay($order=NULL,$type=true)
  162.     {
  163.         if(!is_array($order) || count($order) < 5){
  164.             die("数组数据信息缺失!");
  165.         }
  166.         $order['trade_type'] = 'JSAPI'; // 小程序支付
  167.         $result = self::unifiedOrder($order,$type);
  168.         if ($result['return_code']=='SUCCESS' && $result['result_code']=='SUCCESS') {
  169.             $data = array (
  170.                 'appId'     => $type ? self::$config['xcxappid'] : self::$config['appid'],
  171.                 'timeStamp' => (string)time(),
  172.                 'nonceStr'  => self::get_rand_str(32, 0, 1), // 随机32位字符串
  173.                 'package'   => 'prepay_id='.$result['prepay_id'],
  174.                 'signType'  => 'MD5', // 加密方式
  175.             );
  176.             $data['paySign'] = self::makeSign($data);
  177.             return $data; // 数据小程序客户端
  178.         } else {
  179.             if ($result['err_code_des'])
  180.                 die($result['err_code_des']);
  181.             return false;
  182.         }
  183.     }
  184.     /**
  185.      * [weixinH5 微信H5支付]
  186.      * @param  [type] $order [订单信息数组]
  187.      * @return [type]        [description]
  188.      * $order = array(
  189.      *      'body'          => '', // 产品描述
  190.      *      'total_fee'     => '', // 订单金额(分)
  191.      *      'out_trade_no'  => '', // 订单编号
  192.      *      'product_id'    => '', // 产品id(可用订单编号)
  193.      * );
  194.      */
  195.     public static function h5Pay($order=NULL)
  196.     {
  197.         if(!is_array($order) || count($order) < 4){
  198.             die("数组数据信息缺失!");
  199.         }
  200.         $order['trade_type'] = 'MWEB'; // H5支付
  201.         $result = self::unifiedOrder($order);
  202.         if ($result['return_code']=='SUCCESS' && $result['result_code']=='SUCCESS')
  203.             return $result['mweb_url']; // 返回链接让用户点击跳转
  204.         if ($result['err_code_des'])
  205.             die($result['err_code_des']);
  206.         return false;
  207.     }
  208.     /**
  209.      * [Refund 微信支付退款]
  210.      * @param  [type] $order [订单信息]
  211.      * @param  [type] $type  [是否是小程序]
  212.      * $order = array(
  213.      *      'body'          => '', // 退款原因
  214.      *      'total_fee'     => '', // 商品价格(分)
  215.      *      'out_trade_no'  => '', // 订单编号
  216.      *      'transaction_id'=> '', // 微信订单号
  217.      * );
  218.      */
  219.     public static function Refund($order, $type=NULL)
  220.     {
  221.         $config = self::$config;
  222.         $data = array(
  223.             'appid'         => empty($type) ? $config['appid'] : $config['xcxappid'] ,
  224.             'mch_id'        => $config['mch_id'],
  225.             'nonce_str'     => 'test',
  226.             'total_fee'     => $order['total_fee'],         //订单金额     单位 转为分
  227.             'refund_fee'    => $order['total_fee'],         //退款金额 单位 转为分
  228.             'sign_type'     => 'MD5',                       //签名类型 支持HMAC-SHA256和MD5,默认为MD5
  229.             'transaction_id'=> $order['transaction_id'],    //微信订单号
  230.             'out_trade_no'  => $order['out_trade_no'],      //商户订单号
  231.             'out_refund_no' => $order['out_trade_no'],      //商户退款单号
  232.             'refund_desc'   => $order['body'],              //退款原因(选填)
  233.         );
  234.         // $unified['sign'] = self::makeSign($unified, $config['KEY']);
  235.         $sign = self::makeSign($data);
  236.         $data['sign'] = $sign;
  237.         $xml = self::array_to_xml($data);
  238.         $url = 'https://api.mch.weixin.qq.com/secapi/pay/refund';//接收xml数据的文件
  239.         $response = self::postXmlSSLCurl($xml,$url);
  240.         $result = self::xml_to_array($response);
  241.         // 显示错误信息
  242.         if ($result['return_code']=='FAIL') {
  243.             die($result['return_msg']);
  244.         }
  245.         $result['sign'] = $sign;
  246.         $result['nonce_str'] = 'test';
  247.         return $result;
  248.     }
  249.     /**
  250.      * [notify 回调验证]
  251.      * @return [array] [返回数组格式的notify数据]
  252.      */
  253.     public static function notify()
  254.     {
  255.         $xml = file_get_contents('php://input', 'r'); // 获取xml
  256.         if (!$xml)
  257.             die('暂无回调信息');
  258.         $data = self::xml_to_array($xml); // 转成php数组
  259.         $data_sign = $data['sign']; // 保存原sign
  260.         unset($data['sign']); // sign不参与签名
  261.         $sign = self::makeSign($data);
  262.         // 判断签名是否正确  判断支付状态
  263.         if ($sign===$data_sign && $data['return_code']=='SUCCESS' && $data['result_code']=='SUCCESS') {
  264.             $result=$data;
  265.         }else{
  266.             $result=false;
  267.         }
  268.         // 返回状态给微信服务器
  269.         if ($result) {
  270.             $str='<xml><return_code><![CDATA[SUCCESS]]></return_code><return_msg><![CDATA[OK]]></return_msg></xml>';
  271.         }else{
  272.             $str='<xml><return_code><![CDATA[FAIL]]></return_code><return_msg><![CDATA[签名失败]]></return_msg></xml>';
  273.         }
  274.         echo $str;
  275.         return $result;
  276.     }
  277.     /**
  278.      * [makeSign 生成签名]
  279.      * 本方法不覆盖sign成员变量,如要设置签名需要调用SetSign方法赋值
  280.      * @param  [type] $data [description]
  281.      * @return [type]       [description]
  282.      */
  283.     public static function makeSign($data)
  284.     {
  285.         // 去空
  286.         $data = array_filter($data);
  287.         //签名步骤一:按字典序排序参数
  288.         ksort($data);
  289.         $string_a = http_build_query($data);
  290.         $string_a = urldecode($string_a);
  291.         //签名步骤二:在string后加入key
  292.         $config = self::$config;
  293.         $string_sign_temp = $string_a."&key=".$config['key'];
  294.         //签名步骤三:MD5加密
  295.         $sign = md5($string_sign_temp);
  296.         // 签名步骤四:所有字符转为大写
  297.         $result = strtoupper($sign);
  298.         return $result;
  299.     }
  300.     /**
  301.      * [xml_to_array 将xml转为array]
  302.      * @param  [type] $xml [xml字符串]
  303.      * @return [type]      [转换得到的数组]
  304.      */
  305.     public static function xml_to_array($xml)
  306.     {
  307.         //禁止引用外部xml实体
  308.         libxml_disable_entity_loader(true);
  309.         $result = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
  310.         return $result;
  311.     }
  312.     /**
  313.      * [array_to_xml 输出xml字符]
  314.      * @param  [type] $data [description]
  315.      * @return [type]       [description]
  316.      */
  317.     public static function array_to_xml($data)
  318.     {
  319.         if(!is_array($data) || count($data) <= 0){
  320.             die("数组数据异常!");
  321.         }
  322.         $xml = "<xml>";
  323.         foreach ($data as $key=>$val){
  324.             if (is_numeric($val)){
  325.                 $xml .= "<".$key.">".$val."</".$key.">";
  326.             }else{
  327.                 $xml .= "<".$key."><![CDATA[".$val."]]></".$key.">";
  328.             }
  329.         }
  330.         $xml .= "</xml>";
  331.         return $xml;
  332.     }
  333.     /**
  334.      * [curl_get_contents get请求]
  335.      * @param  [type] $url [请求地址]
  336.      * @return [type]      [description]
  337.      */
  338.     public static function curl_get_contents($url)
  339.     {
  340.         $ch = curl_init();
  341.         curl_setopt($ch, CURLOPT_URL, $url);                //设置访问的url地址
  342.         // curl_setopt($ch,CURLOPT_HEADER,1);               //是否显示头部信息
  343.         curl_setopt($ch, CURLOPT_TIMEOUT, 5);               //设置超时
  344.         curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);   //用户访问代理 User-Agent
  345.         curl_setopt($ch, CURLOPT_REFERER, self::$referer);        //设置 referer
  346.         curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);        //跟踪301
  347.         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);        //返回结果
  348.         $r=curl_exec($ch);
  349.         curl_close($ch);
  350.         return $r;
  351.     }
  352.     /**
  353.      * [postXmlSSLCurl 需要使用证书的请求]
  354.      * @param  [type]  $xml    [xml数据]
  355.      * @param  [type]  $url    [post请求地址]
  356.      * @param  integer $second [description]
  357.      * @return [type]          [description]
  358.      */
  359.     public static function postXmlSSLCurl($xml,$url,$second=30)
  360.     {
  361.         $ch = curl_init();
  362.         //超时时间
  363.         curl_setopt($ch,CURLOPT_TIMEOUT,$second);
  364.         //这里设置代理,如果有的话
  365.         //curl_setopt($ch,CURLOPT_PROXY, '8.8.8.8');
  366.         //curl_setopt($ch,CURLOPT_PROXYPORT, 8080);
  367.         curl_setopt($ch,CURLOPT_URL, $url);
  368.         curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
  369.         curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
  370.         //设置header
  371.         curl_setopt($ch,CURLOPT_HEADER,FALSE);
  372.         //要求结果为字符串且输出到屏幕上
  373.         curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
  374.         //设置证书
  375.         //使用证书:cert 与 key 分别属于两个.pem文件
  376.         //默认格式为PEM,可以注释
  377.         curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM');
  378.         curl_setopt($ch,CURLOPT_SSLCERT, self::$sslcert_path);
  379.         //默认格式为PEM,可以注释
  380.         curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM');
  381.         curl_setopt($ch,CURLOPT_SSLKEY, self::$sslkey_path);
  382.         //post提交方式
  383.         curl_setopt($ch,CURLOPT_POST, true);
  384.         curl_setopt($ch,CURLOPT_POSTFIELDS,$xml);
  385.         $data = curl_exec($ch);
  386.         //返回结果
  387.         if($data){
  388.             curl_close($ch);
  389.             return $data;
  390.         } else {
  391.             $error = curl_errno($ch);
  392.             echo "curl出错,错误码:$error"."<br>";
  393.             curl_close($ch);
  394.             return false;
  395.         }
  396.     }
  397.     /** fengkui.net
  398.      * [get_rand_str 获取随机字符串]
  399.      * @param  integer $randLength    [长度]
  400.      * @param  integer $addtime       [是否加入当前时间戳]
  401.      * @param  integer $includenumber [是否包含数字]
  402.      * @return [type]                 [description]
  403.      */
  404.     public static function get_rand_str($randLength=6,$addtime=1,$includenumber=0)
  405.     {
  406.         if ($includenumber)
  407.             $chars='abcdefghijklmnopqrstuvwxyzABCDEFGHJKLMNPQEST123456789';
  408.         $chars='abcdefghijklmnopqrstuvwxyz';
  409.         $len=strlen($chars);
  410.         $randStr='';
  411.         for ($i=0;$i<$randLength;$i++){
  412.             $randStr .= $chars[rand(0,$len-1)];
  413.         }
  414.         $tokenvalue = $randStr;
  415.         $addtime && $tokenvalue=$randStr.time();
  416.         return $tokenvalue;
  417.     }
  418.     /** fengkui.net
  419.      * [get_iP 定义一个函数get_iP() 客户端IP]
  420.      * @return [type] [description]
  421.      */
  422.     public static function get_iP()
  423.     {
  424.         if (getenv("HTTP_CLIENT_IP"))
  425.             $ip = getenv("HTTP_CLIENT_IP");
  426.         else if(getenv("HTTP_X_FORWARDED_FOR"))
  427.             $ip = getenv("HTTP_X_FORWARDED_FOR");
  428.         else if(getenv("REMOTE_ADDR"))
  429.             $ip = getenv("REMOTE_ADDR");
  430.         else $ip = "Unknow";
  431.         if(preg_match('/^((?:(?:25[0-5]|2[0-4]\d|((1\d{2})|([1-9]?\d)))\.){3}(?:25[0-5]|2[0-4]\d|((1\d{2})|([1 -9]?\d))))$/', $ip))
  432.             return $ip;
  433.         else
  434.             return '';
  435.     }
  436. }


本文网址:https://www.zztuku.com/index.php/detail-9011.html
站长图库 - 分享封装的一个PHP微信支付的类库(扫码、H5、小程序)
申明:如有侵犯,请 联系我们 删除。

评论(0)条

您还没有登录,请 登录 后发表评论!

提示:请勿发布广告垃圾评论,否则封号处理!!

    编辑推荐

    Photoshop绘制非常细腻的红苹果