X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=38de08072ea9e7c5a1427d047a23d1f328a124d4;hb=8a5f6e7c208344736b432515d9b93a1aa78790ed;hp=8a41eebda0562371003d1114d93e19864a6142be;hpb=f929f48ccd3dcd231921972a792cfc44be742268;p=wfpl.git diff --git a/encode.php b/encode.php index 8a41eeb..38de080 100644 --- a/encode.php +++ b/encode.php @@ -174,11 +174,16 @@ function enc_mdy($str) { return enc_mmddyyyy($str); } -function enc_mmddyyyyhhmm($seconds) { - return date('m/d/Y g:ia', (int)$seconds); +# pass unix timestamp or "2012-12-20 22:23:34" +function enc_mmddyyyyhhmm($str) { + if(is_numeric($str)) { + return date('m/d/Y g:ia', (int)$str); + } else { + return enc_mmddyyyy(substr($str, 0, 10)) . substr($str, 10, 6); + } } -# takes decimal +# takes decimal number of hours # returns hh:mm function enc_hhmm($str) { if(strlen($str) == 0) { @@ -190,7 +195,7 @@ function enc_hhmm($str) { return $str; } -# takes decimal +# takes decimal number of hours # returns hh:mm followed by "am" or "pm" with no space function enc_12hr($str) { if(strlen($str) == 0) { @@ -457,3 +462,12 @@ function enc_linkify($str) { } return $ret; } + +# turns a filename into the unix timestamp of that files modification date +function enc_mtime($dummy, $filename) { + $stat = stat($filename); + if ($stat === false) { + return ''; + } + return '' . $stat['mtime']; +}