rufo Pas me confondre avec Lycos! | Code :
- function isInteger($Value)
- {
- if (preg_match("[\d+]", $Value) != 0)
- {
- // The value must not have a '.' or ',' to be an integer
- if ((preg_match("[\.]", $Value) == 0) && (preg_match("[,]", $Value) == 0))
- {
- // The value is an integer
- return TRUE;
- }
- }
- // The values isn't an integer
- return FALSE;
- }
|
Bon, y'a sans doute mieux comme code, mais ça marche bien |