mirror of
https://github.com/php/php-src.git
synced 2026-04-28 02:33:17 +02:00
15 lines
273 B
PHP
15 lines
273 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));
|
|
?>
|
|
--EXPECTF--
|
|
int(3074457345618258602)
|