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.
数字ごとにコードを1行も作成せずに、数字が1〜6の間にないかどうかを確認するための最良の方法を知りたいと思いました。
したがって、番号が1〜6の間にない場合は、「間違った番号」をエコーします
if ($number < 1 || $number > 6) { echo "wrong number"; }
コメントの質問に答えるために、これが手紙ではないことを確認する方法です。
if (!is_numeric($number) || ($number < 1 || $number > 6)) { echo "wrong number"; }