Open In App

PHP | IntlChar::isWhitespace() Function

Last Updated : 28 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The IntlChar::isWhitespace() function is an inbuilt function in PHP which is used to check whether the given input character is a WhiteSpace character or not according to ICU. IntlChar access number utility function and used to access the information about Unicode Characters. 

The White Space character is considered to ICU whitespace character if and only if it satisfies one of the following criteria: 

  • It is a Unicode Separator character (categories “Z” = “Zs” or “Zl” or “Zp”) but is not also a non-breaking space (U+00A0 NBSP or U+2007 Figure Space or U+202F Narrow NBSP).
  • U+000A LINE FEED .
  • U+000B VERTICAL TABULATION.
  • U+000C FORM FEED.
  • U+000D CARRIAGE RETURN.
  • U+001C FILE SEPARATOR.
  • U+001D GROUP SEPARATOR.
  • U+001E RECORD SEPARATOR.
  • U+001F UNIT SEPARATOR.
  • U+0009 HORIZONTAL TABULATION.

Syntax: 

bool IntlChar::isWhitespace( $codepoint )

Parameters: This function accepts s single parameter $codepoint which is mandatory. The input parameter is a character or integer value, which is encoded as a UTF-8 string.

Return Value: If $codepoint is a whiteSpace character according to ICU then it returns True, otherwise return False.

Below programs illustrate the IntlChar::isWhitespace() Function in PHP:

Program 1:  

PHP




<?php
// PHP code to illustrate
// IntlChar::iswhitespace() function
 
//Input Capital Letter
var_dump(IntlChar::iswhitespace("R"));
 
//Input Small Letter
var_dump(IntlChar::iswhitespace(" r "));
 
//Input Whitespace Character  "\n "
var_dump(IntlChar::iswhitespace("\n"));
 
//Input encoded string
var_dump(IntlChar::iswhitespace("\u{00A0}"));
 
//Input Whitespace Character 
var_dump(IntlChar::iswhitespace(" "));
 
?>


Output

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

Program 2: 

PHP




<?php
// PHP code to IntlChar::iswhitespace()
// function
 
// Declare an array $arr
$arr = array("\t", "\n", "^", "\r", "G\t");
 
// Loop run for every array element
foreach ($arr as $val){
     
    // Check each element as code point data
    var_dump(IntlChar::iswhitespace($val));
}
?>


Output

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

Related Articles: 

References: http://php.net/manual/en/iswhitespace
 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads