<?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
You have javascript disabled. You will not be able to edit any code.