Home > Backend Development > PHP Tutorial > PHP怎么获得中文的ASCII码啊

PHP怎么获得中文的ASCII码啊

WBOY
Release: 2016-06-23 14:16:00
Original
1417 people have browsed it

ASP中直接使用 asc("中") 就可以获得-10544

在PHP中使用ord('中')得到的是228 

如何能像ASP那样获得中文的ASCII码啊

请高手帮忙


回复讨论(解决方案)

ASC()   ANSI 字符代码

ASC()   ANSI 字符代码

只对gbk编码有效!

echo asc('中');function asc($s) {  if(ord($s) < 128) return ord($s);  return current(unpack('N', "\xff\xff$s"));}
Copy after login
Copy after login
-10544

只对gbk编码有效!

echo asc('中');function asc($s) {  if(ord($s) < 128) return ord($s);  return current(unpack('N', "\xff\xff$s"));}
Copy after login
Copy after login
-10544  

非常感谢啊   UTF-8的用iconv转一下就可以了吧

对 utf-8 要转成 gbk 的才可以和 asp 中的一致

对 utf-8 要转成 gbk 的才可以和 asp 中的一致


非常感谢  虽然达到目的了  但是原理还是不知道   这太复杂了 需要好好专研一下  不然太闹心了 我先去结贴   

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template