/ Published in: PHP
Expand |
Embed | Plain Text
function isInteger($n) { return false; } return true; }
Comments
Subscribe to comments
You need to login to post a comment.
mail_json on 08/24/06
form validation integer isinteger
1 person have marked this snippet as a favorite
function isInteger($n) { return false; } return true; }
Subscribe to comments
You need to login to post a comment.
simplified version of the above
function isInteger($n) { return !preg_match("#\D#",$n) ; }
steve db forums