PHP头条
热点:

php中返回ascii值函数odr


ord() 函数返回字符串第一个字符的 ascii 值。

语法
ord(string)
*/
$str="h"; //定义字符
$result=ord($str); //求其ascii码
echo "字符".$str."的ascii码为:".$result; //输出的结果,72

永久链接:

转载随意!带上文章地址吧。

www.phpzy.comtrue/php/36726.htmlTechArticlephp中返回ascii值函数odr ord() 函数返回字符串第一个字符的 ascii 值。 语法 ord(string) */ $str="h"; //定义字符 $result=ord($str); //求其ascii码 echo "字符".$str."的ascii码为:".$result; //输出的结果,...

相关文章

PHP之友评论

今天推荐