AMFReader::readMixedArray

Advertisement

Syntax Syntax

AMFReader::readMixedArray()

Return Return

(array)

Source Source

File: wp-includes/ID3/module.audio-video.flv.php

	/**
	 * @return array
	 */
	public function readMixedArray() {
		// Get highest numerical index - ignored
		$highestIndex = $this->stream->readLong();

		$data = array();
		$key = null;

		while ($key = $this->stream->readUTF()) {
			if (is_numeric($key)) {
				$key = (int) $key;
			}
			$data[$key] = $this->readData();
		}
		// Mixed array record ends with empty string (0x00 0x00) and 0x09
		if (($key == '') && ($this->stream->peekByte() == 0x09)) {
			// Consume byte
			$this->stream->readByte();
		}

Advertisement

Advertisement

Leave a Reply