PHP 中的 ord() 函數是一個內建函數,它是獲取 ASCII 值作為返回值的非常重要的函數。這是一個將字串作為參數的函數,然後如上所述,傳回值是定義的該字串的第一個字元的 ASCII 值。 Php ord 函數基本上從字串中取得單一參數,並且是取得 ASCII 值作為傳回值的強制參數。字串函數與ord函數的關聯也有其意義。
開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
文法:
ord(String)
語法流程如下,ord函數是PHP中字串引用的一部分,用於取得作為參數傳遞的字串的第一個字元。此外,字串是 ord 函數最重要的參數,兩者在某種程度上相互依賴。字串是最需要的參數,用於取得與字串關聯的 ASCII 值,尤其是字串的第一個字元。
PHP ord 是 PHP 4、PHP 5 和 PHP 7 等 PHP 版本的一部分的函數。它將字串的第一個位元組轉換為 0 到 255 之間的值。
先解釋二進位值,然後作為字串輸入給出的字串的第一個位元組作為 0 到 255 之間的無符號整數。
僅當字串是單字節編碼字串時,它才會傳回一個值,該值相當於將字元在集合的整個映射中的位置傳回為集合映射表中存在的值。但有一個條件,即該函數不知道字串編碼,特別是它不會將 Unicode 代碼識別為多位元組編碼值中的一個點。
chr 也是ord() 函數的補充,它也將字串作為輸入,也使用包含字串中某些字元的單一參數,透過將位元組值解釋為使用單字節編碼再次傳回單字元串無符號整數。此外,這也可用於以單字節編碼建立單字元字串,以傳遞一些代碼點或值,這些代碼點或值也可以產生多位元組編碼的字串。屬於此函數的參數與 0 到 255 之間的整數值相同。與此相反,傳回類型變為包含指定位元組的單一字串。這些提到的特徵顯示它與 PHP 中的 ord() 函數完全互補。
ASCII 值是 PHP 的 ord() 函數的最佳伴侶,因為它有助於引用和指向 ASCII 值以及指向它的 ASCII 表值。也是PHP ord()函數的重要參數之一。
mb_ord() 是 ord() 函數的子集函數,它的運作方式有助於取得字元的程式碼點。如果條件滿足則傳回該值,否則傳回與傳回類型一樣的值。字串和單一編碼類型字串是傳遞給 md_ord() 函數的參數,該函數是 ord() 函數的子集。
注意: 所描述的 md_ord 函數沒有完整記錄,也沒有作為 PHP 版本文件的一部分提供。它只是定義和描述了參數和傳回類型,但 PHP 的官方文件或網站(特別是 md_ord 函數)中尚未存在實際的依賴關係和後續操作。以下是 PHP ord() 函數的範例:
此程式說明了 ord() 函數從字串的輸入中傳回 We 的值,就像在給定程式中使用 ord() 函數所歡迎的那樣。
代碼:
<?php echo ord("we")."\n"; echo ord("welcome")."\n"; ?>
輸出:
程式說明如何使用ord函數來表示作為參數傳遞給ord函數的字串,其傳回型別傳回整數值和字串的ascii值,即e傳回值為101 .
代碼:
<?php echo ord("educba"); ?>
輸出:
程式說明如何使用ord函數來表示作為參數傳遞給ord函數的字串,其傳回型別傳回整數值和字串的ascii值,即g傳回值為103
代碼:
<?php echo ord("grammer"); ?>
輸出:
A program to represent that the first character of the string being passed is a line feed using ord() function.
Code :
<?php $str = "\n"; if (ord($str) == 10) { echo "First character of \$str in the ord function is a line feed.\n"; } ?>
Output:
A program to represent the ord function if the scope of the declaration is not global instead if it is local then the output will be represented as an output.
Code :
<?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; } ?>
Output:
A program to represent the ord function if the scope of the declaration is not declared and an empty string is passed whose output stands as illustrated below.
Code :
<?php $str = " "; for ( $pos=0; $pos < strlen($str); $pos ++ ) { $byte = substr($str, $pos); echo 'Byte ' . $pos . ' of $str has value ' . ord($byte) . PHP_EOL; } ?>
Output:
PHP ord() function only supports for PHP 4, PHP5 and PHP 7 versions. It is a pre-defined function that blends with the string references of the PHP language very nicely and helps in providing end-users a better functionality and feature for string and Unicode-defined strings.
This is a guide to the PHP ord(). Here we discuss the Introduction to PHP ord() Function and how it works along with examples as well as Code Implementation. You can also go through our other suggested articles to learn more-
以上是PHP 訂單()的詳細內容。更多資訊請關注PHP中文網其他相關文章!