検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 122 for char (0.003 sec.)
コードポイントの一般カテゴリの値を取得する 12365
« IntlChar::charName IntlChar::chr » PHP Manual IntlChar コードポイントの一般カテゴリの値を取得す ... る IntlChar::charType (PHP 7, PHP 8) IntlChar::charType — コー ... の一般カテゴリの値を取得する 説明 public static IntlChar::charType ( int | string $codepoint ): ? int コード ... プの値を返します。 以下の定数のうちのひとつです: IntlChar::CHAR_CATEGORY_UNASSIGNED IntlChar::CHAR_CATEGORY_ ... GENERAL_OTHER_TYPES IntlChar::CHAR_CATEGORY_UPPERCASE_LETTER IntlChar::CHAR_CAT ...
https://man.plustar.jp/php/intlchar.chartype.html - [similar]
IntlChar クラス 11759
« idn_to_utf8 IntlChar::charAge » PHP Manual intl IntlChar クラス IntlChar クラス (PHP 7, PHP 8) ... はじめに IntlChar クラスは、 Unicode 文字に関する情報にアクセスするた ... 振る舞いにとても近いものです。 クラス概要 class IntlChar { /* Constants */ const string UNICODE_VERSION = 6 ... nst int PROPERTY_MATH = 23 ; const int PROPERTY_NONCHARACTER_CODE_POINT = 24 ; const int PROPERTY_QUOTATIO ... ; const int PROPERTY_INVALID_CODE = -1 ; const int CHAR_CATEGORY_UNASSIGNED = 0 ; const int CHAR_CATEGORY_ ...
https://man.plustar.jp/php/class.intlchar.html - [similar]
コードポイントの双方向カテゴリの値を取得する 11301
« IntlChar::charDigitValue IntlChar::charFromName » PHP Manual IntlChar コードポイントの双方向カ ... テゴリの値を取得する IntlChar::charDirection (PHP 7, PHP 8) IntlChar::charDirect ... 双方向カテゴリの値を取得する 説明 public static IntlChar::charDirection ( int | string $codepoint ): ? int ... を返します。 下記の定数のうち、ひとつを返します: IntlChar::CHAR_DIRECTION_LEFT_TO_RIGHT IntlChar::CHAR_DIREC ... TION_RIGHT_TO_LEFT IntlChar::CHAR_DIRECTION_EUROPEAN_NUMBER IntlChar::CHAR_DIR ...
https://man.plustar.jp/php/intlchar.chardirection.html - [similar]
渡された入力を正規化し、正規化後の文字列を返す 10386
« Normalizer::isNormalized MessageFormatter » PHP Manual Normalizer 渡された入力を正規化し、正規 ... 返します。 例 例1 normalizer_normalize() の例 <?php $char_A_ring = "\xC3\x85" ; // 'LATIN CAPITAL LETTER A W ... ITH RING ABOVE' (U+00C5) $char_combining_ring_above = "\xCC\x8A" ; // 'COMBINING ... RING ABOVE' (U+030A) $char_1 = normalizer_normalize ( $char_A_ring , Normaliz ... er :: FORM_C ); $char_2 = normalizer_normalize ( 'A' . $char_combining_r ...
https://man.plustar.jp/php/normalizer.normalize.html - [similar]
渡された文字列が、指定した正規化を適用済みかどうかを調べる 10262
« Normalizer::getRawDecomposition Normalizer::normalize » PHP Manual Normalizer 渡された文字列が ... ます。 例 例1 normalizer_is_normalized() の例 <?php $char_A_ring = "\xC3\x85" ; // 'LATIN CAPITAL LETTER A W ... ITH RING ABOVE' (U+00C5) $char_combining_ring_above = "\xCC\x8A" ; // 'COMBINING ... RING ABOVE' (U+030A) $char_orig = 'A' . $char_combining_ring_above ; $char_no ... rm = normalizer_normalize ( 'A' . $char_combining_ring_above , Normalizer :: FORM_C ); ech ...
https://man.plustar.jp/php/normalizer.isnormalized.html - [similar]
PHP および DTrace の使用 9892
« PHP および DTrace への入門 PHP DTrace 静的プローブとともに SystemTap を使用 » PHP Manual DTrac ... 数 request-startup リクエスト開始時に発射されます。 char * file , char * request_uri , char * request_metho ... tdown リクエスト・シャットダウン時に発射されます。 char * file , char * request_uri , char * request_metho ... entry スクリプトのコンパイル開始時に発射されます。 char * compile_file , char * compile_file_translated co ... eturn スクリプトのコンパイル終了時に発射されます。 char * compile_file , char * compile_file_translated ex ...
https://man.plustar.jp/php/features.dtrace.dtrace.html - [similar]
Unicode 文字の名前を取得する 7752
« IntlChar::charMirror IntlChar::charType » PHP Manual IntlChar Unicode 文字の名前を取得する Int ... lChar::charName (PHP 7, PHP 8) IntlChar::charName — Unic ... ode 文字の名前を取得する 説明 public static IntlChar::charName ( int | string $codepoint , int $type = ... IntlChar::UNICODE_CHAR_NAME ): ? string Unicode 文字の名前を ... 使う名前の集合。 以下の定数のうちのいずれかです: IntlChar::UNICODE_CHAR_NAME (デフォルト) IntlChar::UNICODE_ ...
https://man.plustar.jp/php/intlchar.charname.html - [similar]
コードポイントが制御文字かどうかを調べる 7629
« IntlChar::isblank IntlChar::isdefined » PHP Manual IntlChar コードポイントが制御文字かどうかを ... 調べる IntlChar::iscntrl (PHP 7, PHP 8) IntlChar::iscntrl — コード ... トが制御文字かどうかを調べる 説明 public static IntlChar::iscntrl ( int | string $codepoint ): ? bool 指定さ ... 制御文字は、以下に挙げるものです: ISO 8-bit control character (U+0000..U+001f and U+007f..U+009f) IntlChar: ... :CHAR_CATEGORY_CONTROL_CHAR (Cc) IntlChar::CHAR_CATEGORY ...
https://man.plustar.jp/php/intlchar.iscntrl.html - [similar]
大文字小文字を区別せず、haystack 文字列の中で needle が最初に登場した場所以降の... 7480
« grapheme_stripos grapheme_strlen » PHP Manual Grapheme 関数 大文字小文字を区別せず、haystack 文 ... を返します。 例 例1 grapheme_stristr() の例 <?php $char_a_ring_nfd = "a\xCC\x8A" ; // 'LATIN SMALL LETTER ... WITH RING ABOVE' (U+00E5) normalization form "D" $char_o_diaeresis_nfd = "o\xCC\x88" ; // 'LATIN SMALL LE ... O WITH DIAERESIS' (U+00F6) normalization form "D" $char_O_diaeresis_nfd = "O\xCC\x88" ; // 'LATIN CAPITAL ... ion form "D" print urlencode ( grapheme_stristr ( $char_a_ring_nfd . $char_o_diaeresis_nfd . $char_a_ring_ ...
https://man.plustar.jp/php/function.grapheme-stristr.html - [similar]
大文字小文字を区別せず、文字列内で最後にあらわれる場所の (書記素単位の) 位置を見... 7443
« grapheme_strpos grapheme_strrpos » PHP Manual Grapheme 関数 大文字小文字を区別せず、文字列内で ... を返します。 例 例1 grapheme_strripos() の例 <?php $char_a_ring_nfd = "a\xCC\x8A" ; // 'LATIN SMALL LETTER ... WITH RING ABOVE' (U+00E5) normalization form "D" $char_o_diaeresis_nfd = "o\xCC\x88" ; // 'LATIN SMALL LE ... O WITH DIAERESIS' (U+00F6) normalization form "D" $char_O_diaeresis_nfd = "O\xCC\x88" ; // 'LATIN CAPITAL ... normalization form "D" print grapheme_strripos ( $char_a_ring_nfd . $char_o_diaeresis_nfd . $char_o_diaer ...
https://man.plustar.jp/php/function.grapheme-strripos.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT