chaosplay
:~#
posts
/
work
/
dev
/
2012-07-07-how-to-tell-if-a-number-is-whole-in-php
/
about/
posts/
photos/
How to Tell if a Number Is Whole in Php
Jul. 7, 2012
if ($num == (int) $num) { // It's whole } else { // It's not }