函数原型
funky_javascript_fix( string $text ): string
函数描述
Fixes JavaScript bugs in browsers.
是否弃用
Warning: This function has been deprecated.
函数参数
-
$text
string
Required - Text to be made safe.
函数返回值
string Fixed text.
函数位置
File: wp-includes/deprecated.php.
函数源码
function funky_javascript_fix($text) {
_deprecated_function( __FUNCTION__, '3.0.0' );
// Fixes for browsers' JavaScript bugs.
global $is_macIE, $is_winIE;
if ( $is_winIE || $is_macIE )
$text = preg_replace_callback("/\%u([0-9A-F]{4,4})/",
"funky_javascript_callback",
$text);
return $text;
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.0.0 | This function has been deprecated. |
| 1.5.0 | Introduced. |

