summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/intdiv_64bit.phpt
blob: d0883fb2125210852de0b0d8a6dc95b86103759f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
intdiv functionality
--SKIPIF--
<?php
if (PHP_INT_SIZE !== 8) {
    die("skip this test is for 64-bit platforms only");
}
?>
--FILE--
<?php
// (int)(PHP_INT_MAX / 3) gives a different result
var_dump(intdiv(PHP_INT_MAX, 3));
?>
--EXPECTF--
int(3074457345618258602)