[ create a new paste ] login | about

Link: http://codepad.org/lv92V9BU    [ raw code | output | fork ]

slevy1ster - PHP, pasted on Feb 10:
1
2
3
4
5
6
7
<?php

var_dump(0xffffffff);
printf("%x\n",PHP_INT_MAX);
printf("%x\n",~PHP_INT_MAX + 1);
printf("%d\n",0xfffffffb);
printf("%d\n",~5 + 1);


Output:
1
2
3
4
5
float(4294967295)
7fffffff
80000001
-5
-5


Create a new paste based on this one


Comments: