Blame | Letzte Änderung | Log anzeigen | RSS feed
<?PHP/*** Example that shows how the debugging features can be used.** $Id: example_features_Debugging.php,v 1.1 2004/11/30 20:03:48 schst Exp $** @package Services_Ebay* @subpackage Examples* @author Stephan Schmidt*/error_reporting(E_ALL);require_once '../Ebay.php';require_once 'config.php';$session = Services_Ebay::getSession($devId, $appId, $certId);$session->setToken($token);$ebay = new Services_Ebay($session);// Wire will be stored$session->setDebug(Services_Ebay_Session::DEBUG_STORE);echo "GetLogoURL('Small');<br />";$logo = $ebay->GetLogoURL('Small');echo sprintf('<img src="%s" width="%d" height="%d" title="This has been fetched from eBay" />', $logo['URL'], $logo['Width'], $logo['Height'] );echo "<br /><br />";echo "getWire()<br />";echo "<pre>";echo htmlspecialchars($session->getWire());echo "</pre>";// all XML data will be sent to STDOUT$session->setDebug(Services_Ebay_Session::DEBUG_PRINT);echo "GetLogoURL('Small');<br />";$logo = $ebay->GetLogoURL('Small');echo sprintf('<img src="%s" width="%d" height="%d" title="This has been fetched from eBay" />', $logo['URL'], $logo['Width'], $logo['Height'] );echo "<br /><br />";?>