IntlChar::isspace
(PHP 7, PHP 8)
IntlChar::isspace — Check if code point is a space character
Description
Determines if the specified character is a space character or not.
Parameters
Examples
Example #1 Testing different code points
<?php
var_dump(IntlChar::isspace("A"));
var_dump(IntlChar::isspace(" "));
var_dump(IntlChar::isspace("\n"));
var_dump(IntlChar::isspace("\t"));
var_dump(IntlChar::isspace("\u{00A0}"));
?>The above example will output:
bool(false) bool(true) bool(true) bool(true) bool(true)
See Also
- IntlChar::isJavaSpaceChar() - Check if code point is a space character according to Java
- IntlChar::isWhitespace() - Check if code point is a whitespace character according to ICU
- IntlChar::isUWhiteSpace() - Check if code point has the White_Space Unicode property
- ctype_space() - Check for whitespace character(s)
↑ and ↓ to navigate • Enter to select • Esc to close • / to open