Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Gdata/MimeFile.php
Go to the documentation of this file.
00001 <?php
00002 
00033 class Zend_Gdata_MimeFile
00034 {
00035 
00041     protected $_fileHandle = null;
00042 
00049     public function __construct($fileHandle)
00050     {
00051         $this->_fileHandle = $fileHandle;
00052     }
00053 
00061     public function read($bytesRequested)
00062     {
00063       return fread($this->_fileHandle, $bytesRequested);
00064     }
00065 
00066 }
 All Data Structures Namespaces Files Functions Variables Enumerations