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.
これは 2 つのステートメントですか、それとも 1 つのステートメントですか?
if ($a == "A" && $b == "B") { // do something }
PSR 基準に従いたい場合、2 つのステートメントをどのように使用すればよいですか? 複数の if を使用する必要がありますか? if の中の if のように?
次のようになります。
if ($a == "A" && $b == "B") { }
複数のifを作成する必要はありません
より長い条件がある場合は、次の構文を使用できます。
<?php if ($a == "A" && $b == "B" ) { }
コードスタイルがPSRに設定されている場合、両方ともPhpStormでテストされました