Saturday, July 25, 2026
HomeLanguagesPHP | IntlChar getCombiningClass() Function

PHP | IntlChar getCombiningClass() Function

The IntlChar::getCombiningClass() function is an inbuilt function in PHP which is used to get the combining class of the code point.
Syntax: 

int IntlChar::getCombiningClass ( $codepoint )

Parameters: This function accepts a single parameter $codepoint which is mandatory. The $codepoint value is an integer values or character, which is encoded as a UTF-8 string.
Return Value: This function returns the combining class of the code point. 

Below programs illustrate the IntlChar::getCombiningClass() function in PHP:

Program 1:  

PHP




<?php
  
// PHP function to illustrate
// the use of IntlChar::getCombiningClass()
  
// Input data is string type
var_dump(IntlChar::getCombiningClass("\p{143}"));
  
// Input data is character type
var_dump(IntlChar::getCombiningClass(" "));
  
// Input data is unicode character type
var_dump(IntlChar::getCombiningClass("\u{350}"));
  
// Input data is string type
var_dump(IntlChar::getCombiningClass("XYZ"));
  
// Input data is unicode character type
var_dump(IntlChar::getCombiningClass("\u{0358}"));
  
?>


Output: 

NULL
int(0)
int(230)
NULL
int(232)




 

Program 2: 

PHP




<?php
// PHP code to illustrate IntlChar::getCombiningClass()
      
// Declare an array $arr
$arr = array("\u{314}", "neveropen", "^", "\u{0324}", "6", "\n");
     
// Loop run for every array element
foreach ($arr as $val){
         
    // Check each element as code point data
    var_dump(IntlChar::getCombiningClass($val));
}
?>


Output: 

int(230)
NULL
int(0)
int(220)
int(0)
int(0)




 

Related Articles: 

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

RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6972 POSTS0 COMMENTS