検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 584 for C (0.012 sec.)
Creates a new map by intersecting keys with another map 4120
« Ds\Map::hasValue Ds\Map::isEmpty » PHP Manual Map Creates a new map by intersecting keys with ... another map Ds\Map::intersect (PECL ds >= 1.0.0) Ds\Map::intersect — Creates a ... new map by intersecting keys with another map 説明 public Ds\Map::inte ... rsect ( Ds\Map $map ): Ds\Map Creates a new map contain ... ing the pairs of the current instance whose keys are also present in the ...
https://man.plustar.jp/php/ds-map.intersect.html - [similar]
Creates a new map using values from the current instance and another map 4120
« Ds\Map::toArray Ds\Map::values » PHP Manual Map Creates a new map using values from the curren ... t instance and another map Ds\Map::union (PECL ds >= 1.0.0) ... Ds\Map::union — Creates a new map using values from the current inst ... ance and another map 説明 public Ds\Map::union ( Ds\Ma ... p $map ): Ds\Map Creates a new map that contains the pairs of the cur ...
https://man.plustar.jp/php/ds-map.union.html - [similar]
配列と同様の形式で、複数の変数への代入を行う 4120
« ksort natcasesort » PHP Manual 配列 関数 配列と同様の形式で、複数の変数への代入を行う list (PH ... カフェイン' ); // すべての変数の取得 list( $drink , $color , $power ) = $info ; echo " $drink の色は $col ... 部の変数の取得 list( $drink , , $power ) = $info ; echo " $drink には $power が含まれています。\n" ; // ... 三番目のみの取得 list( , , $power ) = $info ; echo " $power 欲しい!\n" ; // list() は文字列では動作 ... しません list( $bar ) = "abcde" ; var_dump ( $bar ); // NULL ?> 例2 list() の使 ...
https://man.plustar.jp/php/function.list.html - [similar]
リファレンスが行うことは何ですか? 4120
« リファレンスとは? リファレンスが行わないこと » PHP Manual リファレンスの説明 リファレンスが行う ... ます。 例1 未定義の変数のリファレンスの使用 <?php function foo (& $var ) { } foo ( $a ); // $a が作成され ... p ( array_key_exists ( 'b' , $b )); // bool(true) $c = new StdClass ; foo ( $c -> d ); var_dump ( prope ... rty_exists ( $c , 'd' )); // bool(true) ?> リファレンスを返す関数で ... <?php $var1 = "Example variable" ; $var2 = "" ; function global_references ( $use_globals ) { global $v ...
https://man.plustar.jp/php/language.references.whatdo.html - [similar]
URL を組み立てる 4120
« Yaf_Route_Static Yaf_Route_Static::match » PHP Manual Yaf_Route_Static URL を組み立てる Yaf_Ro ... ute_Static::assemble (Yaf >=2.3.0) Yaf_Route_Static::assemble ... — URL を組み立てる 説明 public Yaf_Route_Static::assemble ( array $info , array $ ... り値 文字列を返します。 エラー / 例外 info に キー ':c' と ':a' が設定されていなかった場合、 Yaf_Exceptio ... n_TypeError をスローします。 例 例1 Yaf_Route_Static::assemble() の例 <?php $router = new Yaf_Router () ...
https://man.plustar.jp/php/yaf-route-static.assemble.html - [similar]
Inserts values at a given index 4082
« Ds\Deque::get Ds\Deque::isEmpty » PHP Manual Deque Inserts values at a given index Ds\Deque::i ... nsert (PECL ds >= 1.0.0) Ds\Deque::insert — Inserts values at ... a given index 説明 public Ds\Deque::insert ( int $index , mixed ...$values ) ... at a given index. パラメータ index The index at which to insert. 0 <= index <= count 注意 : You can ins ... 戻り値 値を返しません。 エラー / 例外 OutOfRangeException if the index is not valid. 例 例1 Ds\Deque:: ...
https://man.plustar.jp/php/ds-deque.insert.html - [similar]
Returns the result of applying a callback to each value 4082
« Ds\Map::last Ds\Map::merge » PHP Manual Map Returns the result of applying a callback to each ... value Ds\Map::map (PECL ds >= 1.0.0) Ds\Map::map — Returns the result of ... applying a callback to each value 説明 public Ds\Map::map ( cal ... lable $callback ): Ds\Map Returns the result of applying a ... callback function to each value of the map. パラメータ cal ...
https://man.plustar.jp/php/ds-map.map.html - [similar]
Inserts values at a given index 4082
« Ds\Sequence::get Ds\Sequence::join » PHP Manual Sequence Inserts values at a given index Ds\Se ... quence::insert (PECL ds >= 1.0.0) Ds\Sequence::insert — ... Inserts values at a given index 説明 abstract public Ds\Sequence::insert ( int $index , mixed . ... ..$values ): void Inserts values into the sequence at a given index. パラメータ index The index at w ... hich to insert. 0 <= index <= count 注意 : You can ins ...
https://man.plustar.jp/php/ds-sequence.insert.html - [similar]
Inserts values at a given index 4082
« Ds\Vector::get Ds\Vector::isEmpty » PHP Manual Vector Inserts values at a given index Ds\Vecto ... r::insert (PECL ds >= 1.0.0) Ds\Vector::insert — Inserts values a ... t a given index 説明 public Ds\Vector::insert ( int $index , mixed ...$values ... ): void Inserts values into the vector at a given index. パラメータ index The index at ... which to insert. 0 <= index <= count 注意 : You can ins ...
https://man.plustar.jp/php/ds-vector.insert.html - [similar]
はじめに 4082
« Ctype インストール/設定 » PHP Manual Ctype はじめに はじめに 以下の関数は、現在のロケール( set ... locale() も参照) に基づき文字または文字列がある文字クラ ... 整数の引数を指定してコールした場合、これらの関数は、 ctype.h に記述された C の同名の関数と全く同様に動作し ... 関してチェックが行われます。 警告 PHP 8.1.0 以降は、ctype関数 に文字列でない引数を渡すことは、推奨されな ... くなりました。将来のバージョンでは、引数は ASCII コードポイントではなく、文字列として解釈されるよ ...
https://man.plustar.jp/php/intro.ctype.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 NEXT