返回字符的序数值。
语法: int ord(string string);
返回值: 整数
函数种类: 资料处理
本函数返回字符的 ASCII (美国国家标准交换码) 序数值。本函数和 chr() 函数相反。
<?phpif (ord($str) == 10) { echo("字符串 \$str 的第一个字是换行字符。\n");}?>
chr()