原生PHP接入微信支付完整代码示例

4

原生PHP接入微信支付完整代码示例

原生PHP接入微信支付完整代码示例前言

微信支付是中国最大的在线支付平台之一,提供多种支付方式和接口。原生PHP接入微信支付需要配置好相关参数,并编写相应的PHP代码来实现支付功能。在本文中,我们将详细描述如何接入微信支付,包括获取必要的信息、添加H5支付域名以及编写三个PHP代码。

步骤1:获取微信支付商户号

首先,你需要在微信商户平台上注册并开通相关服务。然后,在"我的商户"页面中,可以找到你的商户号。

![微信支付商户号]( 微信支付商户号$merchant_id = 'your_merchant_id';

// API密钥$api_key = 'your_api_key';

// 支付金额$amount =100;

// 预付款订单号$order_no = date('YmdHis') . rand(1000,9999);

// URL参数$params = array(

'appid' => $merchant_id,

'mchid' => $merchant_id,

'nonce_str' => uniqid(),

'body' => '测试订单',

'out_trade_no' => $order_no,

'total_fee' => $amount *100);

// 加密参数$encrypted_params = json_encode($params);

$signature = sha1($api_key . '&' . $encrypted_params);

// URL$url = ' CURL请求$curl = curl_init();

curl_setopt($curl, CURLOPT_URL, $url);

curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

curl_setopt($curl, CURLOPT_POST, true);

curl_setopt($curl, CURLOPT_POSTFIELDS, CURLOPT_HTTPHEADER, array(

'Content-Type: application/x-www-form-urlencoded',

'Sign: ' . $signature));

// 获取预付款订单号$response = curl_exec($curl);

curl_close($curl);

if ($response) {

echo "预付款订单号:$order_no

";

} else {

echo "错误:" . curl_error($curl) . "

";

}

?>

```

代码2:支付成功回调```php

// API密钥$api_key = 'your_api_key';

// 支付金额$amount =100;

// 预付款订单号$order_no = date('YmdHis') . rand(1000,9999);

// 回调参数$params = array(

'appid' => $merchant_id,

'mchid' => $merchant_id,

'nonce_str' => uniqid(),

'body' => '测试订单',

'out_trade_no' => $order_no,

'total_fee' => $amount *100);

// 加密参数$encrypted_params = json_encode($params);

$signature = sha1($api_key . '&' . $encrypted_params);

// URL$url = ' CURL请求$curl = curl_init();

curl_setopt($curl, CURLOPT_URL, $url);

curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

curl_setopt($curl, CURLOPT_POST, true);

curl_setopt($curl, CURLOPT_POSTFIELDS, CURLOPT_HTTPHEADER, array(

'Content-Type: application/x-www-form-urlencoded',

'Sign: ' . $signature));

// 获取支付结果$response = curl_exec($curl);

curl_close($curl);

if ($response) {

echo "支付成功!

";

} else {

echo "错误:" . curl_error($curl) . "

";

}

?>

```

代码3:支付失败回调```php

// API密钥$api_key = 'your_api_key';

// 支付金额$amount =100;

// 预付款订单号$order_no = date('YmdHis') . rand(1000,9999);

// 回调参数$params = array(

'appid' => $merchant_id,

'mchid' => $merchant_id,

'nonce_str' => uniqid(),

'body' => '测试订单',

'out_trade_no' => $order_no,

'total_fee' => $amount *100);

// 加密参数$encrypted_params = json_encode($params);

$signature = sha1($api_key . '&' . $encrypted_params);

// URL$url = ' CURL请求$curl = curl_init();

curl_setopt($curl, CURLOPT_URL, $url);

curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

curl_setopt($curl, CURLOPT_POST, true);

curl_setopt($curl, CURLOPT_POSTFIELDS, CURLOPT_HTTPHEADER, array(

'Content-Type: application/x-www-form-urlencoded',

'Sign: ' . $signature));

// 获取支付结果$response = curl_exec($curl);

curl_close($curl);

if ($response) {

echo "支付失败!

";

} else {

echo "错误:" . curl_error($curl) . "

";

}

?>

```

以上是三个PHP代码示例,分别用于实现微信支付功能。这些代码需要根据实际情况进行调整和完善。

注意

* 这些代码仅供参考,并不保证在所有环境下都能正常工作。

* 微信支付的API密钥和商户号需要替换为自己的信息。

* 支付金额、预付款订单号等参数需要根据实际情况进行设置。

* CURL请求需要根据实际情况进行调整,例如添加或删除HTTP头部。

结束

以上是原生PHP接入微信支付完整代码示例的详细描述。希望这些代码能够帮助你实现微信支付功能。

支付php

版权声明:除非特别标注,否则均为网络文章,侵权请联系站长删除。

上一篇 java微信无感支付怎么开通_微信无感支付是什么 微信无感支付怎么开通

下一篇 微信和支付宝相关支付业务场景介绍