Voting

: min(three, one)?
(Example: nine)

The Note You're Voting On

winbill at hotmail dot com
14 years ago
Be careful :

<?php
$n
="19.99";
print
intval($n*100); // prints 1998
print intval(strval($n*100)); // prints 1999
?>

<< Back to user notes page

To Top