- var_dump: documentation ( source)
- ctype_digit: documentation ( source)
<?php
class Validator
{
/**
* Alleen decimale cijfers
*
* @param mixed $var
* @return bool
*/
public static function onlyDigits($var)
{
return ctype_digit($var);
}
}
// Tests
var_dump( Validator::onlyDigits('abc') ); // Moet FALSE zijn
var_dump( Validator::onlyDigits('123') ); // Moet TRUE zijn