Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 33d09468bb238c2e5fa59d38cfd7db7d > files > 29

php-pear-Services_Ebay-0.13.1-3.mga4.noarch.rpm

<?PHP
/**
 * example that fetches information on a dispute
 *
 * $Id$
 *
 * @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);

$dispute = $ebay->GetDispute('997');

echo '<pre>';
print_r($dispute->toArray());
echo '</pre>';

foreach ($dispute as $message) {
	echo '<pre>';
	print_r($message);
	echo '</pre>';
}
?>