What is the difference between the | and || operators?

前端 未结 5 775
鱼传尺愫
鱼传尺愫 2020-12-02 01:41

| and || - what is the difference between these two operators in PHP?

5条回答
  •  死守一世寂寞
    2020-12-02 02:06

    | -> binary operator || -> Boolean operator or -> also a Boolean operator with lower precedence

    $x = false | true; //will set $x to an integer
    $x = false || true; //will set $x to true
    $x = false or true; //will set $x to false exactly the same that:
    ($x = false) || true;
    

提交回复
热议问题