Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Amf/Value/ByteArray.php
Go to the documentation of this file.
00001 <?php
00031 class Zend_Amf_Value_ByteArray
00032 {
00036     protected $_data = '';
00037 
00044     public function __construct($data)
00045     {
00046         $this->_data = $data;
00047     }
00048 
00054     public function getData()
00055     {
00056         return $this->_data;
00057     }
00058 }
 All Data Structures Namespaces Files Functions Variables Enumerations