PHP | chr()函数
chr()函数是PHP中的内置函数,用于将 ASCII 值转换为字符。它接受一个 ASCII 值作为参数,并从指定的 ASCII 值返回一个表示字符的字符串。 ASCII 值可以用十进制、八进制或十六进制值指定。
- 八进制值由前导 0 定义。
- 十六进制值由前导 0x 定义。
ASCII值表可以参考这里。
语法:
string chr( $asciiVal)
参数:此函数接受单个参数$asciiVal 。此参数包含有效的 ASCII 值。 chr()函数返回我们作为参数 $asciiVal 传递给它的 ASCII 值的对应字符。
返回值:该函数返回我们传递其 ASCII 值的字符。
例子:
Input : ASCII=35 ASCII=043 ASCII=0x23
Output : # # #
Explanation: The decimal, octal and hex value of '#' is
35, 043 and 0x23 respectively
Input : ASCII=48
Output : 0
下面的程序说明了PHP中的 chr()函数:
程序 1:程序演示当传递不同的 ASCII 但它们的等效字符相同时的 chr()函数。
输出:
The equivalent character for ASCII 35 in decimal is #
The equivalent character for ASCII 043 in octal is #
The equivalent character for ASCII 0x23 in hex is #
程序 2:使用数组演示 chr()函数的程序。
输出:
The character equivalent of ASCII value of 48 is 0
The character equivalent of ASCII value of 49 is 1
The character equivalent of ASCII value of 50 is 2