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

~foo.html~

+function enc_htmlbr($str) { + $str = enc_html($str); + $str = str_replace("\n", "
\n", $str); + return $str; +} + # HTML attribute. # @@ -67,6 +76,14 @@ function enc_url_val($str) { return rawurlencode($str); } +# FIXME +function enc_url_path($str) { + $str = rawurlencode($str); + $str = str_replace('%2F', '/', $str); + return $str; +} + + # This is a hack to work around html's stupid syntax for checkboxes. # # Place the template marker just before a " somewhere. @@ -99,6 +116,10 @@ function enc_upper($str) { return strtoupper($str); } +function enc_ddmmyyyyhhmm($seconds) { + return date('m/d/Y g:ia', (int)$seconds); +} + # display