Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: php検証整数
一般的に、ユーザー入力が整数であることを検証するにはどうすればよいですか?つまり、$ _ GETを介して変数を受け取り、これは整数でなければなりません。
あなたが使用することができます:
preg_match('/^[0-9]+$/', $_GET['variable_name']);
整数のみを操作し、floatなどの他の型を操作しない場合は、 is_numeric ()関数またはis_int()関数を使用する必要があります。