| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
IntlChar::tolower(PHP 7) IntlChar::tolower — Make Unicode character lowercase 説明The given character is mapped to its lowercase equivalent. If the character has no lowercase equivalent, the original character itself is returned. パラメータ
返り値Returns the Simple_Lowercase_Mapping of the code point, if any; otherwise the code point itself. 戻り値の型は integer になります。ただし、コードポイントを UTF-8 文字列で渡した場合は別で、その場合の返り値の型は文字列になります。 例例1 さまざまなコードポイントの例
<?php 上の例の出力は以下となります。 string(1) "a" string(1) "a" string(2) "φ" string(2) "φ" string(1) "1" int(97) int(97) 参考
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「IntlChar::tolower - Make Unicode character lowercase」をGoogle検索
|