本文整理汇总了PHP中WxPayApi::GetPayUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP WxPayApi::GetPayUrl方法的具体用法?PHP WxPayApi::GetPayUrl怎么用?PHP WxPayApi::GetPayUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WxPayApi
的用法示例。
在下文中一共展示了WxPayApi::GetPayUrl方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: WxPayUnifiedOrder
* 4、在支付成功通知中需要查单确认是否真正支付成功(见:notify.php)
*/
$input = new WxPayUnifiedOrder();
$input->SetBody("hsdajdsagfyjdas,gyaw,gf bvdasf,b jsdaf mdas das gfbxzcncncncncncncncndvgs ");
$input->SetAttach("ahhahah");
$input->SetOut_trade_no(MCHID . date("YmdHis"));
$input->SetTotal_fee("1");
$input->SetTime_start(date("YmdHis"));
$input->SetTime_expire(date("YmdHis", time() + 600));
$input->SetGoods_tag("1111");
$input->SetNotify_url("http://localhost/wxpay/example/notify.php");
//回调函数
$input->SetTrade_type("NATIVE");
$input->SetProduct_id("123456789");
//native方式必须穿product_id
$result = WxPayApi::GetPayUrl($input);
/*var_dump($input);
var_dump($result); //打印参数,更直观*/
$url2 = $result["code_url"];
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>微信支付样例</title>
</head>
<body>
<img alt="模式二扫码支付" src="http://paysdk.weixin.qq.com/example/qrcode.php?data=<?php
echo urlencode($url2);
?>