PHP | IntlChar::ispunct() Function Last Updated : 05 Nov, 2020 Comments Improve Suggest changes Like Article Like Report 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 parameter is an integer values or character, which is encoded as a UTF-8 string. Return Value: If $codepoint is a punctuation character then it returns True, otherwise return False. Below programs illustrate the IntlChar::ispunct() function in PHP: Program 1: PHP <?php // PHP code to illustrate IntlChar::ispunct() // function // Input data is character type var_dump(IntlChar::ispunct("G")); // Input data is control character var_dump(IntlChar::ispunct("\t")); // Input data is string type var_dump(IntlChar::ispunct("Geeksforgeeks")); // Input data is number type var_dump(IntlChar::ispunct("2018")); // Input data is single digit var_dump(IntlChar::ispunct("5")); // Input data is punctuation character dot var_dump(IntlChar::ispunct(".")); // Input data is punctuation character comma var_dump(IntlChar::ispunct(",")); ?> Output: bool(false) bool(false) NULL NULL bool(false) bool(true) bool(true) Note: If String and Numbers (except single digit number) are used as a parameter then it returns NULL. Program 2: PHP <?php // PHP code to illustrate IntlChar::ispunct() // Declare an array $arr $arr = array("&", "%", "@", "!", "(", ")", ".", ",", "/", "G", "0"); // Loop run for every array element foreach ($arr as $val){ // Check each element as code point data var_dump(IntlChar::ispunct($val)); } ?> Output: bool(true) bool(true) bool(true) bool(true) bool(true) bool(true) bool(true) bool(true) bool(true) bool(false) bool(false) Related Articles: PHP | IntlChar::isblank() FunctionPHP | IntlChar::isalpha() FunctionPHP | IntlChar::iscntrl() Function Reference: http://php.net/manual/en/intlchar.ispunct.php Comment More infoAdvertise with us Next Article PHP | IntlChar::ispunct() Function M Mithun Kumar Follow Improve Article Tags : Misc Web Technologies PHP PHP-function PHP-Intl +1 More Practice Tags : Misc Similar Reads 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::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::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::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::isblank() Function The IntlChar::isblank() function is an inbuilt function in PHP which is used to determine the given input code data is blank or horizontal space character and the character visible separates words on a line. If the input contains U+0009 (TAB) and characters "Zs" (space separators) except Zero Width 2 min read PHP | IntlChar::isalnum () Function The IntlChar::isalnum() function is an inbuilt function in PHP which is used to check the given input is an alphanumeric character (Digit or Letter) or not. It returns TRUE for characters with general categories "L" (letters) and "Nd" (decimal digit numbers). Syntax: bool IntlChar::isalnum( $codepoi 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::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 isgraph() Function The IntlChar::isgraph() function is an inbuilt function in PHP which is used to check the code point is a graphic character or not. It returns True for all characters except those with general categories Cc(control codes), Cf(format controls), Cs(surrogates), Cn(unassigned), and Z(separators). Synta 2 min read Like