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.
ユーザー入力を検証するための正規表現に問題があります。例えば
if(preg_match("/(male|female)/",$gender)==true) { echo "true"; }
ユーザーが「男性」または「女性」の後に何かを入力すると、コードは「true」を出力します。この問題を解決するには?