字串函式 ord ()

eternal_strong發表於2020-11-02

ord() 函式返回字串的首個字元的 ASCII 值。

ord ( string $string ) : int

引數 描述
string 必需。要從中獲得 ASCII 值的字串。

返回值:
以整數返回 ASCII 值。

echo ord('S').'<br>';
echo ord('Sh');
// 83
// 83
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章