検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 203 for Case (0.022 sec.)
文字列に対してケースフォールディングを行う 9052
« mb_chr mb_convert_encoding » PHP Manual マルチバイト文字列 関数 文字列に対してケースフォールデ ... ィングを行う mb_convert_case (PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8) mb_convert_c ... に対してケースフォールディングを行う 説明 mb_convert_case ( string $string , int $mode , ? string $encoding ... mode 変換モード。以下のうちいずれかひとつです。 MB_CASE_UPPER , MB_CASE_LOWER , MB_CASE_TITLE , MB_CASE_FO ... LD , MB_CASE_UPPER_SIMPLE , MB_CASE_LOWER_SIMPLE , MB_CASE_TITL ...
https://man.plustar.jp/php/function.mb-convert-case.html - [similar]
switch 9020
« continue match » PHP Manual 制御構造 switch switch (PHP 4, PHP 5, PHP 7, PHP 8) switch 文は、同 ... には、 continue 2 を使用してください。 注意 : switch/case が行うのは、 緩やかな比較 であることに注意しましょ ... i == 2 ) { echo "iは2に等しい" ; } switch ( $i ) { case 0 : echo "iは0に等しい" ; break; case 1 : echo "iは ... 1に等しい" ; break; case 2 : echo "iは2に等しい" ; break; } ?> 例2 switch 構 ... 造では文字列を使用できる <?php switch ( $i ) { case "apple" : echo "i is apple" ; break; case "bar" : ...
https://man.plustar.jp/php/control-structures.switch.html - [similar]
列挙型が case を持つかを調べる 8645
« ReflectionEnum::getCases ReflectionEnum::isBacked » PHP Manual ReflectionEnum 列挙型が case... 持つかを調べる ReflectionEnum::hasCase (PHP 8 >= 8.1.0) ReflectionEnum::hasCase — 列挙型が ... case を持つかを調べる 説明 public ReflectionEnum::hasCa ... se ( string $name ): bool 指定された case が列挙型に定義されているかを判定します。 パラメータ ... name 調べる case の名前。 戻り値 case が定義されていたら true を返し ...
https://man.plustar.jp/php/reflectionenum.hascase.html - [similar]
列挙型の特定の case を返す 8613
« ReflectionEnum::getBackingType ReflectionEnum::getCases » PHP Manual ReflectionEnum 列挙型の特 ... 定の case を返す ReflectionEnum::getCase (PHP 8 >= 8.1.0) Re ... flectionEnum::getCase — 列挙型の特定の case を返す 説明 public Reflectio ... nEnum::getCase ( string $name ): ReflectionEnumUnitCase 列挙型の特 ... 定の case を名前で指定すると、 リフレクションオブジェクトを返 ...
https://man.plustar.jp/php/reflectionenum.getcase.html - [similar]
列挙型の基礎 8517
« 列挙型の概要 値に依存した列挙型(Backed Enum) » PHP Manual 列挙型(Enum) 列挙型の基礎 列挙型の基 ... 、限られた数の有効な値を持ちます。 <?php enum Suit { case Hearts ; case Diamonds ; case Clubs ; case Spades ... n pick_a_card ( 'Spades' ); ?> 列挙型は、0個以上の case を定義できます。 case を定義する数に上限はありませ ... ん。 case が0個の列挙型も文法的には有効ですが、役に立ちません ... 。 列挙型の case は、PHP のラベルと同じ規則に従います。 定数 のペー ...
https://man.plustar.jp/php/language.enumerations.basics.html - [similar]
値に依存した列挙型(Backed Enum) 8453
« 列挙型の基礎 列挙型とメソッド » PHP Manual 列挙型(Enum) 値に依存した列挙型(Backed Enum) 値に依 ... なるシングルトンオブジェクトです。 しかし、列挙型の case をデータベースや、 類似のデータストアで読み書きする ... シリアライズ可能であることが自明な) スカラー値を持つ case があると、本質的に役に立ちます。 列挙型にスカラー値 ... には、以下のようにします: <?php enum Suit : string { case Hearts = 'H' ; case Diamonds = 'D' ; case Clubs = ... 'C' ; case Spades = 'S' ; } ?> スカラー値を持つ case を、"Bac ...
https://man.plustar.jp/php/language.enumerations.backed.html - [similar]
列挙型の全ての case を返す 8421
« ReflectionEnum::getCase ReflectionEnum::hasCase » PHP Manual ReflectionEnum 列挙型の全ての case ... e を返す ReflectionEnum::getCases (PHP 8 >= 8.1.0) ReflectionEnum::getCases — 列挙型 ... の全ての case を返す 説明 public ReflectionEnum::getCases (): ar ... ray 列挙型には、ひとつ以上の case を含めることができます。 このメソッドは、定義済みの ... 全ての case を字句解析順 (つまり、ソースコードに現れる順) に取 ...
https://man.plustar.jp/php/reflectionenum.getcases.html - [similar]
列挙型の case 一覧を生成する 8389
« UnitEnum BackedEnum » PHP Manual UnitEnum 列挙型の case 一覧を生成する UnitEnum::cases (PHP 8 ... >= 8.1.0) UnitEnum::cases — 列挙型の case 一覧を生成する 説明 public static ... UnitEnum::cases (): array このメソッドは列挙型の全ての case を含む ... タはありません。 戻り値 列挙型で定義されている全ての case を含む配列を返します。 要素は字句解析順(ソースコー ... びます。 例 例1 基本的な使用法 以下の例は、列挙型の case がどのように返されるかを示しています。 <?php enum ...
https://man.plustar.jp/php/unitenum.cases.html - [similar]
スカラー型の値を列挙型にマップするか、null を返す 8292
« BackedEnum::from コンテキストオプションとパラメータ » PHP Manual BackedEnum スカラー型の値を列 ... ドは 文字列型や整数型の値を、存在する場合に 列挙型の case に変換します。 マッチする case が定義されていない場 ... 合は、 null を返します。 パラメータ value 列挙型の case にマップするスカラー値。 戻り値 この列挙型の case ... のインスタンスを返します。 対応する case が見つからない場合は、 null を返します。 例 例1 基 ... 本的な使用法 以下の例は、列挙型の case がどのように返されるかを示しています。 <?php enum ...
https://man.plustar.jp/php/backedenum.tryfrom.html - [similar]
配列のすべてのキーの大文字小文字を変更する 8292
« 配列 関数 array_chunk » PHP Manual 配列 関数 配列のすべてのキーの大文字小文字を変更する array_ ... change_key_case (PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8) array_change ... _key_case — 配列のすべてのキーの大文字小文字を変更する 説明 ... array_change_key_case ( array $array , int $case = CASE_LOWER ): array a ... のままとなります。 パラメータ array 処理を行う配列。 case CASE_UPPER あるいは CASE_LOWER (デフォルト)。 戻り ...
https://man.plustar.jp/php/function.array-change-key-case.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT