文字列が数字どうか確認
2018/11/17
PHP5.3.3
$bool = is_numeric($string);
整数も小数も負の数もいける
正の整数だけなら
$bool = ctype_digit($string);
PHPで数値をチェックする4つの方法を比較
https://www.flatflag.nir87.com/is_numeric-682
PHP: ctype_digit - Manual
http://php.net/manual/ja/function.ctype-digit.php