php中的字符串常用函数(四) ord() 获得字符的ascii码 chr()获取ascii码对应的字符时间:2022-05-16 01:50:48ord('a');//=>97 返回小写a 的ascii码值97 chr(97);//=>a 返回ascii码表上的97对应的 小写a