CodeExplorer readUTF example
$pos =
$this->pos;
$val =
$this->
readDouble();
$this->pos =
$pos;
return $val;
} /**
* @return string
*/
public function peekUTF() { $pos =
$this->pos;
$val =
$this->
readUTF();
$this->pos =
$pos;
return $val;
} /**
* @return string
*/
public function peekLongUTF() { $pos =
$this->pos;
$val =
$this->
readLongUTF();
$this->pos =
$pos;