Exemplo n.º 1
0
 public static function nfuint32($number, $file)
 {
     return Binary::nuint32($number, fread($file, 4 * $number));
 }
Exemplo n.º 2
0
 public static function nfuint32($n, $f)
 {
     return Binary::nuint32($n, fread($f, 4 * $n));
 }
Exemplo n.º 3
0
 protected function nuint32_at($pos, $n)
 {
     return Binary::nuint32($n, $this->cache, $pos);
 }