Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 20028 программистов и 1649 роботов. Сейчас ищут 1315 программистов ...
IntlChar::isgraph - Check if code point is a graphic character
Вернуться к: IntlChar
IntlChar::isgraph
(PHP 7)
IntlChar::isgraph — Check if code point is a graphic character
Описание
Determines whether the specified code point is a "graphic" character (printable, excluding spaces).
TRUE
for all characters except those with general categories "Cc" (control codes), "Cf" (format controls), "Cs" (surrogates), "Cn" (unassigned), and "Z" (separators).
Список параметров
Возвращаемые значения
Returns TRUE
if
codepoint
is a "graphic" character, FALSE
if not.
Примеры
Пример #1 Testing different code points
<?php
var_dump(IntlChar::isgraph("A"));
var_dump(IntlChar::isgraph("1"));
var_dump(IntlChar::isgraph("\u{2603}"));
var_dump(IntlChar::isgraph("\n"));
?>
Результат выполнения данного примера:
bool(true) bool(true) bool(true) bool(false)
Вернуться к: IntlChar