예제 #1
0
파일: Binary.php 프로젝트: Ennosuke/glip
 public static function nfuint32($number, $file)
 {
     return Binary::nuint32($number, fread($file, 4 * $number));
 }
예제 #2
0
파일: Binary.php 프로젝트: aredridel/glip
 public static function nfuint32($n, $f)
 {
     return Binary::nuint32($n, fread($f, 4 * $n));
 }
예제 #3
0
 protected function nuint32_at($pos, $n)
 {
     return Binary::nuint32($n, $this->cache, $pos);
 }