这篇文章主要为大家详细介绍了php 实现javascript中的escape和unescape函数示例,具有一定的参考价值,可以用来参考一下。
对php实现javascript中的escape和unescape函数感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* js escape php 实现
* @param $string the sting want to be escaped
* @param $in_encoding
* @param $out_encoding
* @param
* @author 五一二笔记网: www.q1010.com
**/
function escape($string, $in_encoding = 'UTF-8',$out_encoding = 'UCS-2') {
$return = '';
if (function_exists('mb_get_info')) {
for($x = 0; $x < mb_strlen ( $string, $in_encoding ); $x ++) {
$str = mb_substr ( $string, $x, 1, $in_encoding );
if (strlen ( $str ) > 1) { // 多字节字符
$return .= '%u' . strtoupper ( bin2hex ( mb_convert_encoding ( $str, $out_encoding, $in_encoding ) ) );
} else {
$return .= '%' . strtoupper ( bin2hex ( $str ) );
}
}
}
return $return;
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/713-0.html
注:关于php 实现javascript中的escape和unescape函数示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:escape,unescape
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。