mirror of
https://github.com/php/php-src.git
synced 2026-04-18 21:41:22 +02:00
15 lines
272 B
PHP
15 lines
272 B
PHP
--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));
|
|
?>
|
|
--EXPECT--
|
|
int(3074457345618258602)
|