|
@@ -370,3 +370,26 @@ function htmlspecialcharsFix($input_str)
|
|
|
return $input_str;
|
|
|
}
|
|
|
|
|
|
+//处理特殊字符
|
|
|
+function htmlspecialcharsAjaxFix($input_str)
|
|
|
+{
|
|
|
+
|
|
|
+ return textUncode($input_str);
|
|
|
+}
|
|
|
+
|
|
|
+if(!function_exists('textDecode')) {
|
|
|
+ function textDecode($str) {
|
|
|
+ return htmlspecialchars_decode($str, ENT_QUOTES);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+if(!function_exists('htmlDecode')) {
|
|
|
+ function htmlDecode($str) {
|
|
|
+ return htmlspecialchars_decode($str, ENT_QUOTES);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|