ord 函數
(PHP 4, PHP 5, PHP 7, PHP 8)
ord — 轉換字符串第一个字节为 0-255 之间的值
说明
ord(string $character): int
解析 character
二进制值第一个字节为 0 到 255 范围的无符号整型类型。
如果字符串是 ASCII、 ISO-8859、Windows 1252之类单字节编码,就等于返回该字符在字符集编码表中的位置。 但请注意,本函数不会去检测字符串的编码,尤其是不会识别类似 UTF-8 或 UTF-16 这种多字节字符的 Unicode 代码点(code point)。
该函数是 chr() 的互补函数。
範例:
<?php
declare(encoding='UTF-8');
$str = "?";
for ( $pos=0; $pos < strlen($str); $pos ++ ) {
$byte = substr($str, $pos);
echo 'Byte ' . $pos . ' of $str has value ' . ord($byte) . PHP_EOL;
}
?>
輸出:
Byte 0 of $str has value 240
Byte 1 of $str has value 159
Byte 2 of $str has value 144
Byte 3 of $str has value 152