X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=bad7b4b0a4f26386b8f160861dd5b5da2acdb982;hb=a1011831f5cf76e4cb8b1c0b5c5332cd82ca2d7b;hp=ab2c2715ad1767dec0f157de69043ebd56e7465b;hpb=409b78be52f7a934a0cbfe0d927b7e0b42d60ec4;p=wfpl.git diff --git a/encode.php b/encode.php index ab2c271..bad7b4b 100644 --- a/encode.php +++ b/encode.php @@ -27,6 +27,12 @@ # such as < will display properly. +function enc_jsdq($str) { + $str = enc_sql($str); + $str = str_replace("\n", "\\n", $str); + return str_replace("\r", "\\r", $str); +} + # encode for putting within double-quotes in SQL function enc_sql($str) { $str = str_replace("\\", "\\\\", $str); @@ -44,6 +50,15 @@ function enc_html($str) { return $str; } +# Encode for output in html. Convert newlines to
+# +# Example:

~foo.html~

+function enc_htmlbr($str) { + $str = enc_html($str); + $str = str_replace("\n", "
\n", $str); + return $str; +} + # HTML attribute. # @@ -61,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. @@ -89,4 +112,134 @@ function enc_tab($str) { return substr($out, 0, -1); } +function enc_upper($str) { + return strtoupper($str); +} + +function enc_ddmmyyyyhhmm($seconds) { + return date('m/d/Y g:ia', (int)$seconds); +} + + +# display