AMFStream::readInt()
{} It's a method of the class: AMFStream{}
No Hooks.
Return
Int
.
Usage
$AMFStream = new AMFStream(); $AMFStream->readInt() // 16-bit;
Code of AMFStream::readInt() AMFStream::readInt WP 6.0
public function readInt() { // 16-bit return ($this->readByte() << 8) + $this->readByte(); }