IntlChar::isgraph

(PHP 7)

IntlChar::isgraphCheck if code point is a graphic character

Opis

public static IntlChar::isgraph ( mixed $codepoint ) : bool

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).

Parametry

codepoint

Wartość typu integer dla punktu kodowego (np. 0x2603 dla U+2603 SNOWMAN) lub znak zakodowany jako string UTF-8 (np. "\u{2603}")

Zwracane wartości

Returns TRUE if codepoint is a "graphic" character, FALSE if not.

Przykłady

Przykład #1 Testowanie różnych punktów kodowych

<?php
var_dump
(IntlChar::isgraph("A"));
var_dump(IntlChar::isgraph("1"));
var_dump(IntlChar::isgraph("\u{2603}"));
var_dump(IntlChar::isgraph("\n"));
?>

Powyższy przykład wyświetli:

bool(true)
bool(true)
bool(true)
bool(false)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top