Help for this page

Select Code to Download


  1. or download this
    0+$foo == $bar  # guarantee numerical equality
    "$foo" == $bar  # guarantee string equality
    $foo == $bar    # it depends...
    
  2. or download this
    0+$foo | $bar   # guarantee numerical bitwise or
    "$foo" | $bar   # guarantee string bitwise or
    $foo | $bar     # ... it depends