IntlChar::isISOControl() function in PHP

The IntlChar::isISOControl() function is used to check whether the entered value is an ISO control code character or not.

Syntax

IntlChar::isISOControl(val)

Parameters

  • val − A character or integer value encoded as a UTF-8 string.

Return

The IntlChar::isISOControl() function returns TRUE if the entered value is an ISO control code character.

Example

The following is an example −

";
   var_dump(IntlChar::isISOControl("n"));
   echo "
";    var_dump(IntlChar::isISOControl("T"));    echo "
";    var_dump(IntlChar::isISOControl("1")); ?>

Output

The following is the output −

bool(false)
bool(true)
bool(false)
bool(false)
Updated on: 2019-12-30T08:12:23+05:30

129 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements