[ create a new paste ] login | about

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

PHP, pasted on Jun 29:
1
2
3
4
5
<?php
echo (int)1234.567;
echo "\n";
echo (int)-1234.567;
?>


Output:
1
2
1234
-1234


Create a new paste based on this one


Comments: