AMFStream::peekLong()
{} It's a method of the class: AMFStream{}
No Hooks.
Return
Int
.
Usage
$AMFStream = new AMFStream(); $AMFStream->peekLong();
Code of AMFStream::peekLong() AMFStream::peekLong WP 6.0
public function peekLong() { $pos = $this->pos; $val = $this->readLong(); $this->pos = $pos; return $val; }