Source for file Account.php
Documentation is available at Account.php
* Model for an eBay account
* @author Stephan Schmidt <schst@php.net>
private $entries = array ();
if (isset ($props['AccountEntry'])) {
$entries = $props['AccountEntry'];
unset ($props['AccountEntry']);
if (isset ($entries[0 ])) {
$this->entries = $entries;
$this->entries = array ($entries);
* iterate through the items
$it = new ArrayObject ($this->entries);
Documentation generated on Mon, 11 Mar 2019 15:49:45 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|