Add Zend_Media_Id3v2 class proposal

git-svn-id: http://php-reader.googlecode.com/svn/branches/zend@153 51a70ab9-7547-0410-9469-37e369ee0574
This commit is contained in:
svollbehr
2009-05-30 11:58:10 +00:00
parent fa507390a3
commit 6a78fc508e
215 changed files with 11203 additions and 11720 deletions

View File

@@ -69,7 +69,8 @@ class Zend_Io_Reader
if (!is_resource($fd) ||
!in_array(get_resource_type($fd), array('stream'))) {
require_once('Zend/Io/Exception.php');
throw new Zend_Io_Exception('Invalid resource type (only resources of type stream are supported)');
throw new Zend_Io_Exception
('Invalid resource type (only resources of type stream are supported)');
}
$this->_fd = $fd;
@@ -497,7 +498,8 @@ class Zend_Io_Reader
* @throws Zend_Io_Exception if <var>length</var> attribute is negative or
* if an I/O error occurs
*/
public final function readString16($length, &$order = null, $trimOrder = false)
public final function readString16
($length, &$order = null, $trimOrder = false)
{
$value = $this->read($length);