PHP String 函数
ord() 函数返回字符串第一个字符的 ASCII 值。
ord(string)
<?php echo ord("h"); echo ord("hello"); ?>
输出:
104 104
Search: