X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=c08f8afe0e1890f668d2f18639cb9ecd00599aa0;hb=c3133300f98840b9cedd56f6269274810160d6c2;hp=123fcc9c47af4b0b45b89a1dc2257f52e7e38d0b;hpb=6c27f346217f7b4b8b24064371f2461cf57c6167;p=wfpl.git diff --git a/encode.php b/encode.php index 123fcc9..c08f8af 100644 --- a/encode.php +++ b/encode.php @@ -50,7 +50,7 @@ function enc_html($str) { return $str; } -# Encode for output in html. converts \n to
+# Encode for output in html. Convert newlines to
# # Example:

~foo.html~

function enc_htmlbr($str) { @@ -59,6 +59,15 @@ function enc_htmlbr($str) { return $str; } +# Encode for output in html. Spaces converted to   +# +# Example: +function enc_htmlnbsp($str) { + $str = enc_html($str); + $str = str_replace(' ', ' ', $str); + return $str; +} + # HTML attribute. # @@ -90,13 +99,25 @@ function enc_url_path($str) { # # Example: function enc_checked($str) { - if($str == 'Yes') { + if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { return '" checked="checked'; } else { return ''; } } +# checkboxe values are stored in the db and handled in php as 0 or 1. When you +# want it displayed as "Yes" or "No" use this: +# Example: (displaying values from a form submission) Over 60?: ~over_60.yesno~ +function enc_yesno($str) { + if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { + return 'Yes'; + } else { + return 'No'; + } +} + + # add a tab at the begining of each non-empty line function enc_tab($str) { $lines = explode("\n", $str); @@ -116,43 +137,45 @@ function enc_upper($str) { return strtoupper($str); } -function enc_ddmmyyyyhhmm($seconds) { - return date('m/d/Y g:ia', (int)$seconds); +# pass date in the form 2008-05-23 +# ercodes date as 05/23/2008 +function enc_mmddyyyy($yyyy_mm_dd) { + if(strlen($yyyy_mm_dd) != 10) { + return date('m/d/Y'); + } + return substr($yyyy_mm_dd, 5, 2) . '/' . substr($yyyy_mm_dd, 8, 2) . '/' . substr($yyyy_mm_dd, 0, 4); } +function enc_mmddyyyyhhmm($seconds) { + return date('m/d/Y g:ia', (int)$seconds); +} -# display