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


PHP Wechat::orderquery方法代码示例

本文整理汇总了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);
开发者ID:dlpc,项目名称:weixinshop,代码行数:13,代码来源:orderquery.php

示例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("没有取到订单号!");
     }
 }
开发者ID:jackycgq,项目名称:weixinshop,代码行数:26,代码来源:item_orderAction.class.php


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