Help for this page

Select Code to Download


  1. or download this
    elsif($length == 2) {
            $num = (substr($num, 0, 1) + 1) . ('0'x($length-1));
    }
    
  2. or download this
    elsif($length == 2) {
            $num = (substr($num, 0, 1) + 1) . '0';
    }
    
  3. or download this
    elseif($length == 2){
        $num = int($num/10) * 10;
    }