标签:
<?php
//跑一段代码遍历所有汉字虽然觉得这样遍历没啥意思, 还是记录下。
header(‘Content-Type: text/html;charset=utf8‘); $start = hexdec(‘4e00‘); $end = hexdec(‘9fa5‘); for($i=$start; $i<$end; $i++) { print_r(json_decode(‘["\u‘.dechex($i).‘"]‘)); echo ("<br>"); }
?>
标签:
原文地址:http://www.cnblogs.com/sunscheung/p/4643438.html