10 * Smarty escape modifier plugin
14 * Purpose: Escape the string according to escapement type
15 * @link http://smarty.php.net/manual/en/language.modifier.escape.php
16 * escape (Smarty online manual)
18 * @param html|htmlall|url|quotes|hex|hexentity|javascript
21 function smarty_modifier_escape($string, $esc_type = 'html')
25 return htmlspecialchars($string, ENT_QUOTES
);
28 return htmlentities($string, ENT_QUOTES
);
31 return rawurlencode($string);
34 // escape unescaped single quotes
35 return preg_replace("%(?<!\\\\)'%", "\\'", $string);
38 // escape every character into hex
40 for ($x=0; $x < strlen($string); $x++
) {
41 $return .= '%' . bin2hex($string[$x]);
47 for ($x=0; $x < strlen($string); $x++
) {
48 $return .= '&#x' . bin2hex($string[$x]) . ';';
54 for ($x=0; $x < strlen($string); $x++
) {
55 $return .= '&#' . ord($string[$x]) . ';';
60 // escape quotes and backslashes, newlines, etc.
61 return strtr($string, array('\\'=>'\\\\',"'"=>"\\'",'"'=>'\\"',"\r"=>'\\r',"\n"=>'\\n','</'=>'<\/'));
64 // safe way to display e-mail address on a web page
65 return str_replace(array('@', '.'),array(' [AT] ', ' [DOT] '), $string);
68 // escape non-standard chars, such as ms document quotes
70 for($_i = 0, $_len = strlen($string); $_i < $_len; $_i++
) {
71 $_ord = ord($string{$_i});
72 // non-standard char, escape it
74 $_res .= '&#' . $_ord . ';';
77 $_res .= $string{$_i};
87 /* vim: set expandtab: */