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($a) { $b -= 1; } else { $b -= 2; }
hereを使用できる場所を見たことがあり:ますが、構文がどのように見えるか忘れました。検索できる特定の名前はありますか? 私は初心者です、ありがとう。
:
答えは次のとおりだと思います。
$b -= ($a) ? 1 : 2;