PHP String 参考手册
返回 "h" 的 ASCII值:
<?php echo ord("h")."<br>"; echo ord("hello")."<br>"; ?>
运行结果:
104 104
ord() 函数返回字符串中第一个字符的 ASCII 值。
ord(string)