普通网友 2014-10-12 08:29
浏览 30
已采纳

通过magento中的订单ID获取订单详细信息

i try to get order details by order id in my code. i create php file and copy that on a folder in public_html. this is my code :

<?php 
 error_reporting( E_ALL );
 require_once "lib/nusoap.php";
 require_once "../app/Mage.php";
  try {
   $order = Mage::getModel('sales/order')->load('100000234');
   $orderData = $order->getData();
   print_r($orderData);
  } catch (Exception $e) {
echo 'Caught exception: ',  $e->getMessage(), "
";
  }
   ?>

but when i run code it,s show no things to me ! i try to var_dump($order) but it`s show no thing and no error ! can any body help me to get order detail and show it ? thanks

  • 写回答

1条回答 默认 最新

  • dougou8639 2014-10-12 08:43
    关注

    Try using this instead

    $order = Mage::getModel('sales/order')->loadByIncrementId('100000234');
    

    Updated

    Make sure that you're initiating Magento as well. After including Mage.php, you should have

    Mage::app();
    umask(0);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?