This file contains hidden or 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
define("SECOND", 1); | |
define("MINUTE", 60 * SECOND); | |
define("HOUR", 60 * MINUTE); | |
define("DAY", 24 * HOUR); | |
define("MONTH", 30 * DAY); | |
function relativeTime($time) { | |
if (!is_numeric($time)) { | |
$time = strtotime($time); | |
} |
This file contains hidden or 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
/* | |
default.jpg | |
mqdefault.jpg | |
hqdefault.jpg | |
maxresdefault.jpg | |
0.jpg - 3.jpg | |
*/ | |
function youTubeThumbnail($id, $size = "mqdefault") { | |
return "http://img.youtube.com/vi/" . $id . "/" . $size . ".jpg"; | |
} |
This file contains hidden or 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
define("DATE_FORMAT", "F j, Y"); | |
define("PUBDATE_FORMAT", "Y-m-d H:i"); | |
define("MYSQL_DATETIME", "Y-m-d H:i:s"); |
NewerOlder