PHP | IntlChar::isIDPart() Function Last Updated : 05 Apr, 2021 Comments Improve Suggest changes Like Article Like Report The IntlChar::isIDPart() function is an inbuilt function in PHP which is used to check whether the given input character is permissible in an identifier or not. It is True for characters with general category "L" (Letters), "Nd" (Decimal digits), "Nl" (letters numbers), "Mc" and "Mn"(Combining marks), "Pc" (Connecting Punctuation) and u_isIDIgnorable(c).Syntax: bool IntlChar::isIDPart( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input parameter is a character or integer value, which is encoded as a UTF-8 string.Return Value: If $codepoint is an identifier character then returns True, otherwise return False.Below programs illustrate the IntlChar::isIDPart() Function in PHP:Program 1: php <?php // PHP code to illustrate // IntlChar::isIDPart() function // Input character codepoint value var_dump(IntlChar::isIDPart("X")); // Input string codepoint value var_dump(IntlChar::isIDPart("Geeks")); // Input symbolic codepoint value var_dump(IntlChar::isIDPart("^ ")); // Input int codepoint value var_dump(IntlChar::isIDPart("3 ")); // Input int char an identifier // of codepoint value var_dump(IntlChar::isIDPart("\u{007F}")); var_dump(IntlChar::isIDPart("\u{012C}")); ?> Output: bool(true) NULL NULL NULL bool(true) bool(true) Program 2: php <?php // PHP code to illustrate // IntlChar::isIDPart() function // Declare an array with // different codepoint value $arr = array("D", "\u{007F}", ".", "8", "/", " " ); // For loop condition to check // each character through function foreach ($arr as $val) { // Check each element as code point data var_dump(IntlChar::isIDPart($val)); } ?> Output: bool(true) bool(true) bool(false) bool(true) bool(false) bool(false) Related Articles: IntlChar::isIDIgnorable() FunctionIntlChar::isUWhiteSpace() FunctionIntlChar::isWhitespace() FunctionIntlChar::isUUppercase() Function Reference: http://php.net/manual/en/intlchar.isidpart.php Comment More infoAdvertise with us Next Article PHP | IntlChar::isIDPart() Function jit_t Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Intl Similar Reads PHP | IntlChar::isIDStart() Function The IntlChar::isIDStart() function is an inbuilt function in PHP which is used to check whether the given input character code point is permissible since the first character is an identifier or not. It is True for characters with general category "L" (Letters), and "Nl" (letters numbers). Syntax: bo 2 min read PHP | IntlChar::isprint() Function The IntlChar::isprint() function is an inbuilt function in PHP which is used to check whether the given input character is a printable character or not. Syntax: bool IntlChar::isprint( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input paramete 2 min read PHP | IntlChar::isJavaIDStart() Function The IntlChar::isJavaIDStart() function is an inbuilt function in PHP which is used to check whether the input character code point is permissible since the first character is a java identifier or not. It is True for characters with general category "Sc" (Currency Symbols), and "Pc" (Connecting Punct 2 min read PHP | IntlChar::isalpha() Function The IntlChar::isalpha() function is an inbuilt function in PHP which is used to check the given input is an alphanumeric character or not. Syntax: bool IntlChar::isalpha( $codepoint ) Parameters: The IntlChar::isalpha() function accept single parameter $codepoint which is mandatory. The input parame 1 min read PHP | IntlChar istitle() Function The IntlChar::istitle function is an inbuilt function in PHP which is used to check whether the input character code point is a titlecase letter or not. In True cases, the characters with the general category are "Lt" (titlecase letter).Syntax: bool IntlChar::istitle( $codepoint ) Parameters: This f 2 min read PHP | IntlChar::isdigit() Function The IntlChar::isdigit() function is an inbuilt function in PHP which is used to determine the given input code data is a digited character or not. It returns true when the character is under the general category decimal digit numbers. Beginning with Unicode 4, this is the same as testing for the Num 2 min read PHP | IntlChar::ispunct() Function The IntlChar::ispunct() function is an inbuilt function in PHP which is used to check whether the given input character is a punctuation character or not. Syntax: bool IntlChar::ispunct( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input parame 2 min read PHP | IntlChar::isspace() Function The IntlChar::isspace() function is an inbuilt function in PHP which is used to check whether the given input character is a space character or not. Syntax: bool IntlChar::isspace( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input parameter is 2 min read PHP | IntlChar::isupper() Function The IntlChar::isupper() function is an inbuilt function in PHP which is used to check whether the given input character is an uppercase character or not. Syntax: bool IntlChar::isupper( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input paramet 2 min read PHP | IntlChar::isxdigit() Function The IntlChar::isxdigit() function is an inbuilt function in PHP which is used to check whether the given input character is a hexadecimal digit or not. It is TRUE for decimal digit numbers (0 - 9), Latin letters (a - f) and (A - F) in both ASCII and Fullwidth ASCII (Letters with codepoint \u{0041} t 2 min read Like