Open In App

PHP IntlChar::charName() Function

Improve
Improve
Like Article
Like
Save
Share
Report

PHP IntlChar::charName() function is an inbuilt function in PHP used to retrieve the name of a Unicode character.

Syntax:

string IntlChar::charName( $codepoint [, $nameChoice = 
IntlChar::UNICODE_CHAR_NAME] )

Parameters: This function accepts two parameters as mentioned above and described below:

  • $codepoint: This parameter is a character or integer value, which is encoded as a UTF-8 string.
  • $nameChoice: The $nameChoice parameter is satisfied one of the following constant conditions:
    • IntlChar::UNICODE_CHAR_NAME (default)
    • IntlChar::CHAR_NAME_ALIAS
    • IntlChar::CHAR_NAME_CHOICE_COUNT
    • IntlChar::UNICODE_10_CHAR_NAME
    • IntlChar::EXTENDED_CHAR_NAME

Note: The resulting character name is a modern name with Unicode version 1.0 and the name contains “invariant” characters A-Z, 0-9, ” “, and ‘-‘ and depends on its $nameChoice parameter.

Return Value: This function returns the corresponding name of input data. If there is no name of the character then return the empty string.

The below examples illustrate the IntlChar::charName() Function in PHP.

Example 1:

php




<?php
// PHP code to illustrate
// IntlChar::charName ()function
 
// Input asterisk symbol of codepoint value
// with constraint UNICODE_CHAR_NAME
var_dump(IntlChar::charName("*"));
var_dump(IntlChar::charName("*", IntlChar::UNICODE_CHAR_NAME));
 
// Input start bracket symbol of codepoint value
// with constraint UNICODE_10_CHAR_NAME
var_dump(IntlChar::charName("("));
var_dump(IntlChar::charName("(", IntlChar::UNICODE_10_CHAR_NAME));
 
// Input ampersand symbol of codepoint value
// with constraint EXTENDED_CHAR_NAME
var_dump(IntlChar::charName("&"));
var_dump(IntlChar::charName("&", IntlChar::EXTENDED_CHAR_NAME));
 
// Input ^ symbol of codepoint value
// with constraint CHAR_NAME_ALIAS
var_dump(IntlChar::charName("^"));
var_dump(IntlChar::charName("^", IntlChar::CHAR_NAME_ALIAS ));
 
// Input tilde symbol of codepoint value
//and with constraint CHAR_NAME_CHOICE_COUNT
var_dump(IntlChar::charName("`"));
var_dump(IntlChar::charName("`", IntlChar::CHAR_NAME_CHOICE_COUNT));
 
// Input space of codepoint value
var_dump(IntlChar::charName(" "));
 
// Input space in codepoint value with
// UNICODE_CHAR_NAME condition
var_dump(IntlChar::charName(" ", IntlChar::UNICODE_CHAR_NAME));
 
// Input Alphabet both Capital and Small character
// condition EXTENDED_CHAR_NAME
// and UNICODE_10_CHAR_NAME
var_dump(IntlChar::charName("R"));
var_dump(IntlChar::charName("r"));
var_dump(IntlChar::charName("R", IntlChar::EXTENDED_CHAR_NAME));
 
// Input int codepoint value
var_dump(IntlChar::charName("10"));
var_dump(IntlChar::charName("7"));
 
// Input Null codepoint value
var_dump(IntlChar::charName("\u{0000}"));
 
?>


Output:

string(8) "ASTERISK" 
string(8) "ASTERISK" 

string(16) "LEFT PARENTHESIS" 
string(0) "" 

string(9) "AMPERSAND" 
string(9) "AMPERSAND" 

string(17) "CIRCUMFLEX ACCENT" 
string(0) "" 

string(12) "GRAVE ACCENT" 
NULL 

string(5) "SPACE" 
string(5) "SPACE" 

string(22) "LATIN CAPITAL LETTER R" 
string(20) "LATIN SMALL LETTER R" 
string(22) "LATIN CAPITAL LETTER R" 

NULL 
string(11) "DIGIT SEVEN" 

string(0) "" 

Example 2:

php




<?php
 
// PHP code to illustrate
// IntlChar::charName() function
 
// Declare an array $arr
$arr = array("G", ".", "8", "/", "000", "\t");
 
// Loop run for every array element
foreach ($arr as $val){
     
    // Check each element as code point data
    var_dump(IntlChar::charName($val));
}
?>


Output:

string(22) "LATIN CAPITAL LETTER G" 
string(9) "FULL STOP" 
string(11) "DIGIT EIGHT" 
string(7) "SOLIDUS" 
NULL 
string(0) "" 

Related Articles:

Reference: http://php.net/manual/en/intlchar.charname.php



Last Updated : 24 Apr, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads