CakeFest 2024: The Official CakePHP Conference

IntlChar::isgraph

(PHP 7, PHP 8)

IntlChar::isgraphCheck if code point is a graphic character

Açıklama

public static IntlChar::isgraph(int|string $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).

Bağımsız Değişkenler

codepoint

int türünde Unicode karakter kodu (örn. U+2603 SNOWMAN için 0x2603) veya string türünde Unicode karakter kodu (örn. "\u{2603}")

Dönen Değerler

Returns true if codepoint is a "graphic" character, false if not. Returns null on failure.

Örnekler

Örnek 1 Farklı karakter kodlarının denenmesi

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

Yukarıdaki örneğin çıktısı:

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

Ayrıca Bakınız

  • ctype_graph() - Sınama, boşluk karakterleri hariç basılabilir karakterler için yapılır

add a note

User Contributed Notes

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