PHP 字符串 ord() 是预定义函数。它用于将字符串的第一个字节转换为 0 到 255 之间的值。它返回 ASCII 值。
用法:
int ord ( string $string );
参数 | 描述 | 必需/可选 |
---|---|---|
string | 指定字符串值 | required |
例子1
<?php
echo "Your Value is:A"."<br>";
echo "By using 'ord()' Function:".ord("A")."<br>";
?>
输出:
Your Value is:P By using 'ord()' Function:80
例子2
<?php
echo "Your Value is:PHP"."<br>";
echo "By using 'ord()' Function:".ord("PHP")."<br>";
?>
输出:
Your Value is:PHP By using 'ord()' Function:80
注意:此函数返回字符串第一个字符的 ASCII 值。
例子3
<?php
echo "Converted ASCII VALUE"."<br>";
for($i=0;$i<=5;$i++){
echo ord("$i")."<br>";
}
?>
输出:
Converted ASCII VALUE 48 49 50 51 52 53
相关用法
- PHP string rtrim()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string join()用法及代码示例
- PHP string sha1()用法及代码示例
- PHP string setlocale()用法及代码示例
- PHP string sha1_file()用法及代码示例
- PHP string md5()用法及代码示例
- PHP string ltrim()用法及代码示例
- PHP string str_repeat()用法及代码示例
- PHP string lcfirst()用法及代码示例
- PHP string str_shuffle()用法及代码示例
- PHP string similar_text()用法及代码示例
- PHP string crypt()用法及代码示例
- PHP string str_ireplace()用法及代码示例
- PHP string str_split()用法及代码示例
- PHP string strcoll()用法及代码示例
- PHP string str_rot13()用法及代码示例
- PHP string str_pad()用法及代码示例
- PHP string quotemeta()用法及代码示例
注:本文由纯净天空筛选整理自 PHP string ord() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。