<?phpFunction is_number($n) { if (is_numeric($n) or is_string($n) and preg_match('/^\.?[0-9]/', $n)) return TRUE; else return FALSE; } ?>