The IntlChar::isspace() function is an inbuilt function in PHP which is used to check whether the given input character is a space character or not.
Syntax:
bool IntlChar::isspace( $codepoint )
Parameters: This function accepts a single parameter $codepoint which is mandatory. The input parameter is an integer value or character, which is encoded as UTF-8 string.
Return Value: If $codepoint is a space character then it returns True, otherwise return False.
Below programs illustrate the IntlChar::isspace() function in PHP:
Program 1:
PHP
<?php
var_dump(IntlChar::isspace( "\n" ));
var_dump(IntlChar::isspace( "\t" ));
var_dump(IntlChar::isspace( "Geeksforgeeks" ));
var_dump(IntlChar::isspace( "2018" ));
var_dump(IntlChar::isspace( "5" ));
var_dump(IntlChar::isspace( "." ));
var_dump(IntlChar::isspace( " " ));
?>
|
Output:
bool(true)
bool(true)
NULL
NULL
bool(false)
bool(false)
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 ( " " , "\n" , "\r" , "\t" , "Geeks" , "." , "G" , "0" );
foreach ( $arr as $val ){
var_dump(IntlChar::isspace( $val ));
}
?>
|
Output:
bool(true)
bool(true)
bool(true)
bool(true)
NULL
bool(false)
bool(false)
bool(false)
Related Articles:
Reference: http://php.net/manual/en/intlchar.isspace.php