本文整理汇总了PHP中Wechat::orderquery方法的典型用法代码示例。如果您正苦于以下问题:PHP Wechat::orderquery方法的具体用法?PHP Wechat::orderquery怎么用?PHP Wechat::orderquery使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Wechat
的用法示例。
在下文中一共展示了Wechat::orderquery方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Wechat
<?php
/**
* 订单查询
* @author www.linauror.com
* @copyright 2014
*/
include 'config.php';
include 'lib.php';
$wechat = new Wechat();
$result = $wechat->orderquery($config, $out_trade_no);
// 这里仅需要本站订单号
print_r($result);
示例2: orderWxQuery
public function orderWxQuery($num = "")
{
$num = $num == "" ? $_GET['orderId'] : $num;
$zhifuhao = M('order_merge')->where(array('orderid' => $num))->getField('mergeid');
if ($zhifuhao != "") {
header('Content-Type:text/html;charset=utf-8');
$wetallroute = dirname(dirname(dirname(dirname(dirname(__FILE__)))));
include $wetallroute . "/wxpay/config.php";
//dump($config);exit;
include $wetallroute . "/wxpay/lib.php";
$wechat = new Wechat();
$result = $wechat->orderquery($config, $zhifuhao);
if ($result['errcode'] == 0 && $result['errmsg'] == 'ok') {
//成功返回
if ($result['order_info']['ret_code'] == 0 && $result['order_info']['trade_state'] == "0") {
$this->success('该订单已支付成功!');
} else {
$this->error('该订单支付失败!' . '[' . $result['order_info']['ret_code'] . ']' . $result['order_info']['ret_msg']);
}
} else {
$this->error('该订单查询失败!' . '[' . $result['errcode'] . ']' . $result['errmsg']);
}
} else {
$this->error("没有取到订单号!");
}
}