PHP | IntlChar::isJavaIDStart() Function Last Updated : 04 Nov, 2020 Comments Improve Suggest changes Like Article Like Report 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 Punctuation). Syntax: bool IntlChar::isJavaIDStart( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input parameter $codepoint is a character or integer value, which is encoded as a UTF-8 string. Return Value: Returns True, if $codepoint start with Java identifier character, otherwise return False. Below programs illustrate the IntlChar::isJavaIDStart() function in PHP: Program 1: PHP <?php // PHP function to illustrate the // use of IntlChar::isJavaIDStart() // Input string codepoint value with // Capital and small letter var_dump(IntlChar::isJavaIDStart("R")); // Input string codepoint value with small character var_dump(IntlChar::isJavaIDStart("r")); // Input control character codepoint value var_dump(IntlChar::isJavaIDStart("\n")); // Input string codepoint value var_dump(IntlChar::isJavaIDStart("Bug")); // Input int codepoint value var_dump(IntlChar::isJavaIDStart("3 ")); // Input int char an identifier // of codepoint value var_dump(IntlChar::isJavaIDStart("\u{007F}")); // Input symbolic codepoint value var_dump(IntlChar::isJavaIDStart(" @ ")); var_dump(IntlChar::isJavaIDStart(" $ ")); ?> Output: bool(true) bool(true) bool(false) NULL NULL bool(false) NULL NULL Program 2: PHP <?php // PHP function to illustrate the // use of IntlChar::isJavaIDStart() // Declare an array with // different codepoint value $arr = array("C", " ", "\n", " #", "\t", "Code", ); // For loop condition to check // each character through function foreach ($arr as $val) { // Check each element as code point data var_dump(IntlChar::isJavaIDStart($val)); } ?> Output: bool(true) bool(false) bool(false) NULL bool(false) NULL Related Articles: IntlChar::isIDIgnorable() FunctionIntlChar::isIDStart() FunctionIntlChar::isIDPart() FunctionIntlChar::isISOControl() Function Reference: http://php.net/manual/en/intlchar.isjavaidstart.php Comment More infoAdvertise with us Next Article PHP | IntlChar::isJavaIDStart() Function jit_t Follow Improve Article Tags : Web Technologies 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::isIDPart() Function 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 2 min read PHP | IntlChar::isJavaSpaceChar() Function The IntlChar::isJavaSpaceChar() function is an inbuilt function in PHP which is used to check whether the input character code point is a space character or not according to Java. Its value is True for characters with general category "Z" (Separators), which does not include control character.Syntax 2 min read PHP IntlChar::isbase() Function PHP IntlChar::isbase() function is an inbuilt function in PHP that is used to check whether the given input data is a base character or not. If the specified code point is a base character then it returns TRUE for general categories "L" (Letters), "N" (numbers), "Mc" (spacing combining marks), and " 2 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::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::iscntrl() Function The IntlChar::iscntrl() function is an inbuilt function in PHP which is used to check the given input is a control character or not. Control characters are line feed, tab, escape, etc. A control character is one of the following types: ISO 8-bit control character (U+0000..U+001f and U+007f..U+009f)I 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::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 Like