当前位置: 首页>>代码示例>>PHP>>正文


PHP WxPayApi::GetPayUrl方法代码示例

本文整理汇总了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);
?>
开发者ID:Alpha2016,项目名称:wxpay,代码行数:31,代码来源:native.php


注:本文中的WxPayApi::GetPayUrl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。