X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=38de08072ea9e7c5a1427d047a23d1f328a124d4;hb=93f76cafaeb914987e47efa22ad74ca435b02bfb;hp=4ef72aea5bde49e26a6f01e066b1d17b0254215d;hpb=58634c046869454b074417a80cf5e35761ec9e8e;p=wfpl.git diff --git a/encode.php b/encode.php index 4ef72ae..38de080 100644 --- a/encode.php +++ b/encode.php @@ -146,9 +146,16 @@ function enc_tab($str) { return "\t" . implode("\n\t", explode("\n", $str)); } -function enc_upper($str) { +function enc_uppercase($str) { return strtoupper($str); } +function enc_upper($str) { # depricated + return enc_uppercase($str); +} + +function enc_lowercase($str) { + return strtolower($str); +} # pass date in the form 2008-05-23 # ercodes date as 05/23/2008 @@ -167,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) { @@ -183,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) { @@ -432,3 +444,30 @@ function enc_s($str) { return 's'; } + +# turn http/ftp (s) urls into html links (and encode everything for html) +# does not encode without protocol (eg "www.foo.com") +# does not linkify email addresses +function enc_linkify($str) { + $ret = ''; + $even = true; + $pieces = preg_split("/((?:ht|f)tps?:\/\/[^ \,\"\n\r\t<]+)/is", $str, null, PREG_SPLIT_DELIM_CAPTURE); + foreach($pieces as $piece) { + if($even) { + $ret .= enc_html($piece); + } else { + $ret .= '' . enc_html($piece) . ''; + } + $even = !$even; + } + 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']; +}