You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
229 B

--TEST--
Bug #27354 (Modulus operator crashes PHP)
--FILE--
<?php
var_dump(-2147483647 % -1);
var_dump(-2147483649 % -1);
var_dump(-2147483648 % -1);
var_dump(-2147483648 % -2);
?>
--EXPECTF--
int(%i)
int(%i)
int(%i)
int(%i)