X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=b73a0ecb430fb9f5577b5dabd66859c0bff2cc89;hb=23ac7dc3675119a6f7a3876837bd6c656b0d2cce;hp=38b09bdd5035ea6226f9ca16d7a680e202770dd0;hpb=7add2ea3f61e40c5f0f5539ac6e02533c9390db4;p=wfpl.git diff --git a/encode.php b/encode.php index 38b09bd..b73a0ec 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,24 @@ 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; +} + +# 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. # @@ -61,6 +85,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. @@ -93,39 +125,36 @@ function enc_upper($str) { return strtoupper($str); } +function enc_ddmmyyyyhhmm($seconds) { + return date('m/d/Y g:ia', (int)$seconds); +} -# display