Help for this page

Select Code to Download


  1. or download this
    $min = $a < $b ? $a : $b;
    
  2. or download this
    $min = $a;
    $min = $b if $b < $a;