ord() 函式返回字串的首個字元的 ASCII 值。
ord ( string $string ) : int
引數 | 描述 |
---|---|
string | 必需。要從中獲得 ASCII 值的字串。 |
返回值:
以整數返回 ASCII 值。
echo ord('S').'<br>';
echo ord('Sh');
// 83
// 83
本作品採用《CC 協議》,轉載必須註明作者和本文連結
ord ( string $string ) : int
引數 | 描述 |
---|---|
string | 必需。要從中獲得 ASCII 值的字串。 |
返回值:
以整數返回 ASCII 值。
echo ord('S').'<br>';
echo ord('Sh');
// 83
// 83
本作品採用《CC 協議》,轉載必須註明作者和本文連結