getid3_matroska::readEBMLelementData() –

You appear to be a bot. Output may be restricted

Description

Usage

$string|false = getid3_matroska::readEBMLelementData( $length, $check_buffer );

Parameters

$length
( int ) required
$check_buffer
( bool ) optional

Returns

string|false

Source

File name: wordpress/wp-includes/ID3/module.audio-video.matroska.php
Lines:

1 to 8 of 8
  private function readEBMLelementData($length, $check_buffer=false) {
    if ($check_buffer && !$this->getid3_matroska::EnsureBufferHasEnoughData($length)) {
      return false;
    }
    $data = substr($this->EBMLbuffer, $this->current_offset - $this->EBMLbuffer_offset, $length);
    $this->current_offset += $length;
    return $data;
  }
 

 View on GitHub View on Trac