phpMoot
phpMoot > PHP - Examples > is_int()
Author: phpMoot August 30, 2010 0 Comments
PHP - Examples
<?php $a = 456; echo "a: is an integer" . (is_int($a) ? "true" : "false") . "\n"; ?>
<?php $a = 456; echo "a: is an integer" . (is_int($a) ? "true" : "false") . "\n";
← Previous post
Next post →
Your email address will not be published. Required fields are marked *