0
0

More than 1 year has passed since last update.

PHP:論理型:ブール変数を使いこなさないといけない

Posted at

例えばif文等で比較する文字数が冗長な時に重宝する

// それぞれの文字列が冗長だと、全体でものすごく長い比較文になってしまう。
if (A >= B && A <= B && C < D)

// そこで、二つに区切って、区切った部分の意味を表現する変数名の変数へそれぞれ代入すると、とても短い比較文になる。
if ($clear && $correct)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0