Small fixes, improve documentation

git-svn-id: http://php-reader.googlecode.com/svn/trunk@89 51a70ab9-7547-0410-9469-37e369ee0574
This commit is contained in:
svollbehr
2008-05-02 15:07:10 +00:00
parent 9ea9f8809e
commit 01ba3eacdb
16 changed files with 337 additions and 31 deletions

View File

@@ -242,11 +242,25 @@ class ISO14496_Box
* @param string $name The box or field name.
* @return mixed
*/
public function __get($name) {
public function __get($name)
{
if ($this->isContainer() && isset($this->_boxes[$name]))
return $this->_boxes[$name][0];
if (method_exists($this, "get" . ucfirst($name)))
return call_user_func(array($this, "get" . ucfirst($name)));
throw new ISO14496_Exception("Unknown box/field: " . $name);
}
/**
* Magic function so that isset($obj->value) will work. This method checks
* whether the box is a container and contains a box that matches the
* identifier.
*
* @param string $name The box name.
* @return boolean
*/
public function __isset($name)
{
return ($this->isContainer() && isset($this->_boxes[$name]));
}
}