3v4l.org

run code in 300+ PHP versions simultaneously
<?php printf("%u",0xffffffffffffffff ); // 0 printf("%d",0xffffffffffffffff ); // 0 // max integer that can be stored as floating pt value (2 ** 53) -1: var_dump( 0x001fffffffffffff ); // float 9.007199254741E+15 var_dump( (int) 0x001fffffffffffff); // int -1 // but can do this: printf("%f", hexdec("ffffffffffffffff"));

preferences:
35.61 ms | 402 KiB | 5 Q