日期:2014-05-17 浏览次数:20434 次
<?php // 源文件编码使用gbk $str = 'AAAAA中文22222'; echo urlencode($str); $ret = ''; for($i=0, $len=strlen($str);$i < $len; $i++) { $ret .= '%'.strtoupper(dechex(ord($str[$i]))); } echo "<br>"; echo $ret;