Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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)
Advertisements
