Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18306 программистов и 1643 робота. Сейчас ищут 1218 программистов ...
IntlChar::isUUppercase - Check if code point has the Uppercase Unicode property
Вернуться к: IntlChar
IntlChar::isUUppercase
(PHP 7)
IntlChar::isUUppercase — Check if code point has the Uppercase Unicode property
Описание
Check if a code point has the Uppercase Unicode property.
This is the same as IntlChar::hasBinaryProperty($codepoint, IntlChar::PROPERTY_UPPERCASE)
Замечание:
This is different than IntlChar::isupper() and will return
TRUE
for more characters.
Список параметров
Возвращаемые значения
Returns TRUE
if
codepoint
has the Uppercase Unicode property, FALSE
if not.
Примеры
Пример #1 Testing different code points
<?php
var_dump(IntlChar::isUUppercase("A"));
var_dump(IntlChar::isUUppercase("a"));
var_dump(IntlChar::isUUppercase("Φ"));
var_dump(IntlChar::isUUppercase("φ"));
var_dump(IntlChar::isUUppercase("1"));
?>
Результат выполнения данного примера:
bool(true) bool(false) bool(true) bool(false) bool(false)
Смотрите также
- IntlChar::isupper() - Check if code point has the general category "Lu" (uppercase letter)
- IntlChar::hasBinaryProperty() - Check a binary Unicode property for a code point
IntlChar::PROPERTY_UPPERCASE
Вернуться к: IntlChar