AMFStream::peekLong() –

You appear to be a bot. Output may be restricted

Description

Usage

$int = AMFStream::peekLong();

Parameters

Returns

int

Source

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

1 to 6 of 6
  public function peekLong() {
    $pos = $this->pos;
    $val = $this->AMFStream::readLong();
    $this->pos = $pos;
    return $val;
  }
 

 View on GitHub View on Trac