Changes between Version 2 and Version 6 of Ticket #1522


Ignore:
Timestamp:
2012/02/09 01:29:18 (12 years ago)
Author:
Seasoft
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1522

    • Property Priority changed from to
    • Property Milestone changed from EC-CUBE2.11.5 to EC-CUBE2.12.0alpha
  • Ticket #1522 – Description

    v2 v6  
     1Ver. 0.13.0 
     2 
     3EC-CUBE のページクラスから、下記コードの動作を確認。 
     4{{{ 
     5require_once('SOAP/Client.php');  
     6 
     7$wsdl = new SOAP_WSDL('http://soap.auctions.yahoo.co.jp/AuctionWSDL/V1/yahooAuctionService.wsdl');  
     8$proxy = $wsdl->getProxy(); 
     9$result = $proxy->getCategory(0);  
     10var_dump($result);  
     11}}} 
     12 
    113r21299 
     14r21461