Amfphp_Core_Amf_Deserializer::readMixedArray PHP Method

readMixedArray() protected method

readMixedArray turns an array with numeric and string indexes into a php array
protected readMixedArray ( ) : array
return array The php array with mixed indexes
    protected function readMixedArray()
    {
        //$length   = $this->readLong(); // get the length  property set by flash
        $this->currentByte += 4;
        return $this->readMixedObject();
        // return the Message of mixed array
    }

Usage Example

コード例 #1
0
 /**
  * read mixed array
  * @return array
  */
 public function readMixedArray()
 {
     return parent::readMixedArray();
 }