Dutch PHP Conference 2025 - Call For Papers

IntlChar::chr

(PHP 7, PHP 8)

IntlChar::chrReturn Unicode character by code point value

Опис

public static IntlChar::chr(int|string $codepoint): ?string

Returns a string containing the character specified by the Unicode code point value.

This method complements IntlChar::ord().

Параметри

codepoint

Значення кодової точки типу int (наприклад 0x2603 для U+2603 SNOWMAN) або символ UTF-8 типу string (напр. "\u{2603}")

Значення, що повертаються

A string containing the single character specified by the Unicode code point value, or null on failure.

Приклади

Приклад #1 Тестування різних кодових точок

<?php
$values
= ["A", 63, 123, 9731];
foreach (
$values as $value) {
var_dump(IntlChar::chr($value));
}
?>

Поданий вище приклад виведе:

string(1) "A"
string(1) "?"
string(1) "{"
string(3) "☃"

Прогляньте також

  • IntlChar::ord() - Return Unicode code point value of character
  • mb_chr() - Return character by Unicode code point value
  • chr() - Generate a single-byte string from a number

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top