IntlChar::ispunct() function in PHP

The IntlChar::ispunct() function check whether the given input character is a punctuation character or not.

Syntax

bool IntlChar::ispunct(val)

Parameters

  • val − An integer value or character encoded as a UTF-8 string. Required!

Return

The IntlChar::ispunct()function returns TRUE if the val is a punctuation character.

Example

The following is an example −

";
   var_dump(IntlChar::ispunct(","));
   echo "
";    var_dump(IntlChar::ispunct("q")); ?>

Output

The following is the output −

bool(false)
bool(true)
bool(false)

Example

Let us see another example −

";
   var_dump(IntlChar::ispunct(":"));
   echo "
";    var_dump(IntlChar::ispunct("10")); ?>

Output

The following is the output −

bool(true)
bool(true)
NULL
Updated on: 2019-12-30T07:48:40+05:30

147 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements