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