AMFStream::read() –
You appear to be a bot. Output may be restricted
Description
Usage
$string = AMFStream::read( $length );
Parameters
- $length
- ( int ) required –
Returns
string
Source
File name: wordpress/wp-includes/ID3/module.audio-video.flv.php
Lines:
1 to 5 of 5
public function read($length) { $val = substr($this->bytes, $this->pos, $length); $this->pos += $length; return $val; }