add
This commit is contained in:
@@ -100,6 +100,9 @@ abstract class Base
|
|||||||
*/
|
*/
|
||||||
public $app_secret = '';
|
public $app_secret = '';
|
||||||
|
|
||||||
|
public $ssl_cert = '';
|
||||||
|
public $ssl_key = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
|
|||||||
+9
-5
@@ -15,7 +15,7 @@ class Http
|
|||||||
*
|
*
|
||||||
* @return Result
|
* @return Result
|
||||||
*/
|
*/
|
||||||
private function request($url, $pushType = 'get', $data = [], callable $callback = NULL)
|
private function request($url, $pushType = 'get', $data = [], callable $callback = NULL, $isSSL = FALSE)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (
|
if (
|
||||||
@@ -25,7 +25,7 @@ class Http
|
|||||||
$url = $this->url . '/' . $url;
|
$url = $this->url . '/' . $url;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->curl_push($url, $pushType, $data, $callback);
|
return $this->curl_push($url, $pushType, $data, $callback, $isSSL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -36,7 +36,7 @@ class Http
|
|||||||
* @return Result
|
* @return Result
|
||||||
* curl请求
|
* curl请求
|
||||||
*/
|
*/
|
||||||
public function curl_push($url, $type = 'get', $data = [], callable $callback = NULL)
|
public function curl_push($url, $type = 'get', $data = [], callable $callback = NULL, $isSSL = FALSE)
|
||||||
{
|
{
|
||||||
$_data = $this->paramEncode($data);
|
$_data = $this->paramEncode($data);
|
||||||
if ($type == 'get' && is_array($_data)) {
|
if ($type == 'get' && is_array($_data)) {
|
||||||
@@ -50,6 +50,10 @@ class Http
|
|||||||
if (!empty($this->header)) {
|
if (!empty($this->header)) {
|
||||||
curl_setopt($ch, CURLOPT_HTTPHEADER, $this->header);
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $this->header);
|
||||||
}
|
}
|
||||||
|
if ($isSSL && is_array($isSSL)) {
|
||||||
|
curl_setopt($ch, CURLOPT_SSLCERT, $isSSL[0]);
|
||||||
|
curl_setopt($ch, CURLOPT_SSLKEY, $isSSL[1]);
|
||||||
|
}
|
||||||
curl_setopt($ch, CURLOPT_NOBODY, FALSE);
|
curl_setopt($ch, CURLOPT_NOBODY, FALSE);
|
||||||
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 1);// 超时设置
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 1);// 超时设置
|
||||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);//返回内容
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);//返回内容
|
||||||
@@ -133,14 +137,14 @@ class Http
|
|||||||
*
|
*
|
||||||
* @return Result
|
* @return Result
|
||||||
*/
|
*/
|
||||||
public static function post($url, $data = [], callable $callback = NULL, array $header = NULL)
|
public static function post($url, $data = [], callable $callback = NULL, array $header = NULL, $isSSl = FALSE)
|
||||||
{
|
{
|
||||||
static $_class = NULL;
|
static $_class = NULL;
|
||||||
if ($_class == NULL) $_class = new Http();
|
if ($_class == NULL) $_class = new Http();
|
||||||
if (!empty($header)) {
|
if (!empty($header)) {
|
||||||
$_class->setHeaders($header);
|
$_class->setHeaders($header);
|
||||||
}
|
}
|
||||||
return $_class->request($url, 'post', $data, $callback);
|
return $_class->request($url, 'post', $data, $callback, $isSSl);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+36
-3
@@ -5,6 +5,7 @@
|
|||||||
* Date: 2018/3/26 0026
|
* Date: 2018/3/26 0026
|
||||||
* Time: 10:22
|
* Time: 10:22
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace wchat;
|
namespace wchat;
|
||||||
|
|
||||||
class Recharge extends Base
|
class Recharge extends Base
|
||||||
@@ -24,7 +25,7 @@ class Recharge extends Base
|
|||||||
* @param string $orderNo
|
* @param string $orderNo
|
||||||
* @return bool|Result
|
* @return bool|Result
|
||||||
*/
|
*/
|
||||||
public function payment(int $money, string $orderNo, $openId = null)
|
public function payment(int $money, string $orderNo, $openId = NULL)
|
||||||
{
|
{
|
||||||
$_this = $this;
|
$_this = $this;
|
||||||
if ($money < 0) {
|
if ($money < 0) {
|
||||||
@@ -36,7 +37,7 @@ class Recharge extends Base
|
|||||||
return Http::post($this->createPayUrl(), $this->builder(),
|
return Http::post($this->createPayUrl(), $this->builder(),
|
||||||
function ($result, $body) use ($_this) {
|
function ($result, $body) use ($_this) {
|
||||||
$data = $_this->toArray($result);
|
$data = $_this->toArray($result);
|
||||||
if(isset($data['sign'])){
|
if (isset($data['sign'])) {
|
||||||
$sign = $data['sign'];
|
$sign = $data['sign'];
|
||||||
unset($data['sign']);
|
unset($data['sign']);
|
||||||
$_sign = $_this->sign($data);
|
$_sign = $_this->sign($data);
|
||||||
@@ -61,7 +62,6 @@ class Recharge extends Base
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
@@ -91,4 +91,37 @@ class Recharge extends Base
|
|||||||
{
|
{
|
||||||
return $this->mch_host . '/pay/unifiedorder';
|
return $this->mch_host . '/pay/unifiedorder';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $money
|
||||||
|
* @param $openid
|
||||||
|
* @param $order
|
||||||
|
* @param $REMOTE_ADDR
|
||||||
|
* @return Result
|
||||||
|
*
|
||||||
|
* 提现
|
||||||
|
*/
|
||||||
|
public function tx($money, $openid, $order, $REMOTE_ADDR)
|
||||||
|
{
|
||||||
|
$array = [
|
||||||
|
'nonce_str' => $this->random(32),
|
||||||
|
'partner_trade_no' => $order,
|
||||||
|
'mchid' => $this->mch_id,
|
||||||
|
'mch_appid' => $this->app_id,
|
||||||
|
'openid' => $openid,
|
||||||
|
'check_name' => 'NO_CHECK',
|
||||||
|
'amount' => $money * 100,
|
||||||
|
'spbill_create_ip' => $REMOTE_ADDR,
|
||||||
|
'desc' => '看世界杯集球星卡,一起瓜分现金红包。',
|
||||||
|
];
|
||||||
|
|
||||||
|
$transfers = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers';
|
||||||
|
|
||||||
|
$array['sign'] = $this->sign($array);
|
||||||
|
|
||||||
|
return Http::post($transfers, $this->toXml($array), function ($data) {
|
||||||
|
return $this->toArray($data);
|
||||||
|
}, NULL, [$this->ssl_cert, $this->ssl_key]);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user