微信支付是一种常见的移动支付方式,可以方便快捷地进行线上支付,而PHP微信扫码支付源代码则是一种前台支付方式,用户可以通过微信扫码支付,实现线上支付。
<?php
// 引入支付工具包
require_once 'wechat-pay/lib/WxPay.Api.php';
require_once 'wechat-pay/example/WxPay.NativePay.php';
// 构建订单函数
function build_order($fee) {
// 生成订单号
$orderId = WxPayConfig::MCHID . date("YmdHis");
$input = new WxPayUnifiedOrder();
// 设置商品名称
$input->SetBody("商品名称");
// 设置商品单价
$input->SetTotal_fee($fee * 100);
// 设置商户订单号
$input->SetOut_trade_no($orderId);
// 设置支付方式
$input->SetTrade_type("NATIVE");
// 设置回调URL
$input->SetNotify_url("https://www.example.com/wxpay_notify.php");
// 生成预支付订单
$notify = new NativePay();
$result = $notify->GetPayUrl($input);
if (!isset($result["code_url"])) {
exit("Failed to get code_url");
}
// 返回订单信息
return array(
"orderId" => $orderId,
"fee" => $fee,
"codeUrl" => $result["code_url"]
);
}
<?php
$order = build_order(1);
// 显示二维码
echo "Fee: " . $order["fee"] . "<br>";
echo "Order ID: " . $order["orderId"] . "<br>";
echo "<img src='https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=" . urlencode($order["codeUrl"]) . "'>";
以上两个示例展示了如何构建订单以及生成支付二维码,并在页面中显示。用户只需通过微信扫码即可完成支付。