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 )
Paramters: This function accepts a single parameter $codepoint which is mandotary. 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 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 code to illustrate 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() Function
- PHP | IntlChar::isalpha() Function
- PHP | IntlChar::iscntrl() Function
Reference: http://php.net/manual/en/intlchar.ispunct.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- How to get the function name inside a function in PHP ?
- p5.js | second() function
- D3.js | d3.map.get() Function
- p5.js | sq() function
- p5.js | abs() function
- p5.js | arc() Function
- p5.js | nf() Function
- p5.js | pow() function
- p5.js | nfs() Function
- p5.js | nfp() Function
- p5.js | nfc() function
- CSS | url() Function
- D3.js | d3.lab() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



