❮PHP字符串参考
返回ASCII值“ h”:
<?php echo ord("h")."<br>"; echo ord("hello")."<br>"; ?>
ord()函数返回字符串的第一个字符的ASCII值。
ord(string)