X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=bad7b4b0a4f26386b8f160861dd5b5da2acdb982;hb=71fc7c41c946279b6d1e1072f72ad3f5aa6a7b39;hp=1cbac74e7d6252e51a4f599999ef383f057ff8d6;hpb=8abf94f3526d4c1a7fa846b72a0ce64e0d2d03db;p=wfpl.git diff --git a/encode.php b/encode.php index 1cbac74..bad7b4b 100644 --- a/encode.php +++ b/encode.php @@ -50,14 +50,11 @@ function enc_html($str) { return $str; } - -# Encode for output in html. Converts newlines to
+# Encode for output in html. Convert newlines to
# # Example:

~foo.html~

function enc_htmlbr($str) { - $str = str_replace('&', '&', $str); - $str = str_replace('<', '<', $str); - $str = str_replace('>', '>', $str); + $str = enc_html($str); $str = str_replace("\n", "
\n", $str); return $str; } @@ -79,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. @@ -111,6 +116,10 @@ function enc_upper($str) { return strtoupper($str); } +function enc_ddmmyyyyhhmm($seconds) { + return date('m/d/Y g:ia', (int)$seconds); +} + # display