ord()函數是PHP中的內置函數,它返回字符串的第一個字符的ASCII值。此函數將字符串作為參數,並返回該字符串的第一個字符的ASCII值。
用法:
int ord($string)
參數:該函數接受單個參數$string。這是一個強製性參數,可從中獲取ASCII值。
返回值:該函數返回一個整數值,該整數值表示作為參數傳遞給該函數的字符串中第一個字符的ASCII值。
例子:
Input:Geeksforgeeks Output:71 Explanation:The ASCII value of G is 71 Input:twinkle Output:116 Explanation:The ASCII value of t is 116
以下示例程序旨在說明PHP中的ord()函數:
程序1:
<?php
// PHP program to illustrate the ord() function
// ASCII value of 't' is printed.
echo ord("twinkle");
?>
輸出:
116
程序2:
<?php
// PHP program to illustrate the ord() function
// ASCII value of 'G' is printed
echo ord("Geeksforgeeks");
?>
輸出:
71
參考:
http://php.net/manual/en/function.ord.php
相關用法
- PHP sin( )用法及代碼示例
- p5.js pow()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pos()用法及代碼示例
- PHP min( )用法及代碼示例
- PHP cos( )用法及代碼示例
- CSS hsl()用法及代碼示例
- p5.js second()用法及代碼示例
- p5.js pan()用法及代碼示例
- p5.js int()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- PHP abs()用法及代碼示例
注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 PHP | ord() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。