Created
March 9, 2017 18:42
-
-
Save akost/31914611aa05da7ea6f8555f301c35da to your computer and use it in GitHub Desktop.
Ugly 12-hours formatting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php echo ($i <= 12) ? $i : (($i <= 24) ? ($i - 12) : ($i - 24)) ?><?php echo $i < 12 ? 'am' : ($i > 23) ? 'am' : 'pm' ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment