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
var_dump(IntlChar::ispunct( "G" ));
var_dump(IntlChar::ispunct( "\t" ));
var_dump(IntlChar::ispunct( "Geeksforgeeks" ));
var_dump(IntlChar::ispunct( "2018" ));
var_dump(IntlChar::ispunct( "5" ));
var_dump(IntlChar::ispunct( "." ));
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
$arr = array ( "&" , "%" , "@" , "!" , "(" , ")" , "." , "," , "/" , "G" , "0" );
foreach ( $arr as $val ){
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:
Reference: http://php.net/manual/en/intlchar.ispunct.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
05 Nov, 2020
Like Article
Save Article