示例#1
0
 public function testUnpackI64BelowPositiveBound()
 {
     if (PHP_INT_SIZE == 8) {
         $result = 9223372036854775806;
     } else {
         $result = '9223372036854775806';
     }
     $hi = 0x7fffffff;
     $low = 0xfffffffe;
     $this->assertSame($result, OrientDBCommandAbstract::unpackI64($hi, $low));
 }