| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | <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><?phprequire_once "../lib/WxPay.Api.php";require_once "WxPay.MicroPay.php";require_once 'log.php';//初始化日志$logHandler= new CLogFileHandler("../logs/".date('Y-m-d').'.log');$log = Log::Init($logHandler, 15);//打印输出数组信息function printf_info($data){    foreach($data as $key=>$value){        echo "<font color='#00ff55;'>$key</font> : $value <br/>";    }}if(isset($_REQUEST["auth_code"]) && $_REQUEST["auth_code"] != ""){	$auth_code = $_REQUEST["auth_code"];	$input = new WxPayMicroPay();	$input->SetAuth_code($auth_code);	$input->SetBody("刷卡测试样例-支付");	$input->SetTotal_fee("1");	$input->SetOut_trade_no(WxPayConfig::MCHID.date("YmdHis"));		$microPay = new MicroPay();	printf_info($microPay->pay($input));}/** * 注意: * 1、提交被扫之后,返回系统繁忙、用户输入密码等错误信息时需要循环查单以确定是否支付成功 * 2、多次(一半10次)确认都未明确成功时需要调用撤单接口撤单,防止用户重复支付 */?><body>  	<form action="#" method="post">        <div style="margin-left:2%;">商品描述:</div><br/>        <input type="text" style="width:96%;height:35px;margin-left:2%;" readonly value="刷卡测试样例-支付" name="auth_code" /><br /><br />        <div style="margin-left:2%;">支付金额:</div><br/>        <input type="text" style="width:96%;height:35px;margin-left:2%;" readonly value="1分" name="auth_code" /><br /><br />        <div style="margin-left:2%;">授权码:</div><br/>        <input type="text" style="width:96%;height:35px;margin-left:2%;" name="auth_code" /><br /><br />       	<div align="center">			<input type="submit" value="提交刷卡" style="width:210px; height:50px; border-radius: 15px;background-color:#FE6714; border:0px #FE6714 solid; cursor: pointer;  color:white;  font-size:16px;" type="button" onclick="callpay()" />		</div>	</form></body></html>
 |