AMFStream::peekLongUTF() –

You appear to be a bot. Output may be restricted

Description

Usage

$string = AMFStream::peekLongUTF();

Parameters

Returns

string

Source

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

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

 View on GitHub View on Trac