getid3_matroska::readEBMLelementData()
{} It's a method of the class: getid3_matroska{}
No Hooks.
Return
String|false
.
Usage
// private - for code of main (parent) class only $result = $this->readEBMLelementData( $length, $check_buffer );
- $length(int) (required)
- -
- $check_buffer(true|false)
- -
Default: false
Code of getid3_matroska::readEBMLelementData() getid3 matroska::readEBMLelementData WP 6.0
private function readEBMLelementData($length, $check_buffer=false) { if ($check_buffer && !$this->EnsureBufferHasEnoughData($length)) { return false; } $data = substr($this->EBMLbuffer, $this->current_offset - $this->EBMLbuffer_offset, $length); $this->current_offset += $length; return $data; }