Help for this page

Select Code to Download


  1. or download this
    $ampm = 'AM';
    if ($hour >= 12)
    ...
        $hour -= 12;
        $ampm = 'PM';
    }
    
  2. or download this
    $datetime = sprintf
       '%d:%02d:%02d %s, %s, %s %d, %d',
       $hour, $min, $sec, $ampm,
       $thisday, $thismon, $mday, $year + 1900;
    
  3. or download this
    $ampm = 'AM';
    if ($hour >= 12)
    ...
        $ampm = 'PM';
    }
    $hour += 12 unless $hour;