php中的字符串常用函数(四) ord() 获得字符的ascii码 chr()获取ascii码对应的字符...

ord('a');//=>97 返回小写a 的ascii码值97

chr(97);//=>a 返回ascii码表上的97对应的 小写a

转载于:https://www.cnblogs.com/sweetXiaoma/p/6000672.html

你可能感兴趣的:(php)