Results of 1 - 10 of about 50 for ArrayAccess (0.001 sec.)
- 指定したオフセットに値を設定する 12693
- « ArrayAccess::offsetGet ArrayAccess::offsetUnset » PHP Manual ArrayAccess 指定したオフセットに値
...
を設定する ArrayAccess::offsetSet (PHP 5, PHP 7, PHP 8) ArrayAccess::offs ...
Set — 指定したオフセットに値を設定する 説明 public ArrayAccess::offsetSet ( mixed $offset , mixed $value ): void ...
、 offset パラメータは null に設定されます。 <?php $arrayaccess [] = "first value" ; $arrayaccess [] = "second val ...
ue" ; print_r ( $arrayaccess ); ?> 上の例の出力は以下となります。 Array ( [0] = ...
-
https://man.plustar.jp/php/arrayaccess.offsetset.html
- [similar]
- オフセットを取得する 12392
- « ArrayAccess::offsetExists ArrayAccess::offsetSet » PHP Manual ArrayAccess オフセットを取得する
...
ArrayAccess::offsetGet (PHP 5, PHP 7, PHP 8) ArrayAccess::offs ...
etGet — オフセットを取得する 説明 public ArrayAccess::offsetGet ( mixed $offset ): mixed 指定したオフセ ...
ッドの実装で参照を返すことができます。 これにより、 ArrayAccess オブジェクトのオーバーロードされた配列に対する間接 ...
間接的な変更を要するものです。 直接的な変更の際には ArrayAccess::offsetSet() がコールされますが、間接的な変更の際に ...
-
https://man.plustar.jp/php/arrayaccess.offsetget.html
- [similar]
- オフセットが存在するかどうか 12137
- « ArrayAccess ArrayAccess::offsetGet » PHP Manual ArrayAccess オフセットが存在するかどうか ArrayAccess
...
Access::offsetExists (PHP 5, PHP 7, PHP 8) ArrayAccess::offsetExists — オフセットが存在するかどうか 説明 ...
public ArrayAccess::offsetExists ( mixed $offset ): bool オフセットが ...
かどうかを返します。 このメソッドが実行されるのは、 ArrayAccess を実装したオブジェクト上で isset() あるいは empty( ...
) を使用した場合です。 注意 : empty() を使用すると ArrayAccess::offsetGet() がコールされ、 ArrayAccess::offsetExi ...
-
https://man.plustar.jp/php/arrayaccess.offsetexists.html
- [similar]
- ArrayAccess インターフェイス 11580
- « Throwable::__toString ArrayAccess::offsetExists » PHP Manual 定義済みのインターフェイスとクラス
...
ArrayAccess インターフェイス ArrayAccess インターフェイス (PHP ...
ンターフェイスです。 インターフェイス概要 interface ArrayAccess { /* メソッド */ public offsetExists ( mixed $offs ...
id } 例1 基本的な使用法 <?php class Obj implements ArrayAccess { private $container = array(); public function __ ...
Append 1 [1] => Append 2 [2] => Append 3 ) ) 目次 ArrayAccess::offsetExists — オフセットが存在するかどうか Array ...
-
https://man.plustar.jp/php/class.arrayaccess.html
- [similar]
- オフセットの設定を解除する 10768
- « ArrayAccess::offsetSet Serializable » PHP Manual ArrayAccess オフセットの設定を解除する ArrayAccess
...
ccess::offsetUnset (PHP 5, PHP 7, PHP 8) ArrayAccess::offsetUnset — オフセットの設定を解除する 説明 pub ...
lic ArrayAccess::offsetUnset ( mixed $offset ): void オフセットの設 ...
ません。 関連キーワード: オフセット , 設定 , 解除 , ArrayAccess , offsetUnset , offset , offsetSet , Serializable ...
-
https://man.plustar.jp/php/arrayaccess.offsetunset.html
- [similar]
- スローされたオブジェクトの文字列表現を取得する 7895
- « Throwable::getPrevious ArrayAccess » PHP Manual Throwable スローされたオブジェクトの文字列表現
...
Throwable , toString , パラメータ , getPrevious , ArrayAccess , public ...
-
https://man.plustar.jp/php/throwable.tostring.html
- [similar]
- The Stack class 7640
- « Ds\Set::xor Ds\Stack::allocate » PHP Manual Data Structures The Stack class The Stack class (N
...
クラス概要 class Ds\Stack implements Ds\Collection , ArrayAccess { /* メソッド */ public allocate ( int $capacity ) ...
ージョン 説明 PECL ds 1.3.0 The class now implements ArrayAccess . 目次 Ds\Stack::allocate — Allocates enough memor ...
-
https://man.plustar.jp/php/class.ds-stack.html
- [similar]
- The Queue class 7595
- « Ds\Stack::toArray Ds\Queue::allocate » PHP Manual Data Structures The Queue class The Queue cl
...
クラス概要 class Ds\Queue implements Ds\Collection , ArrayAccess { /* Constants */ const int MIN_CAPACITY = 8 ; /* ...
ージョン 説明 PECL ds 1.3.0 The class now implements ArrayAccess . 目次 Ds\Queue::allocate — Allocates enough memor ...
-
https://man.plustar.jp/php/class.ds-queue.html
- [similar]
- WeakMap クラス 7384
- « WeakReference::get WeakMap::__construct » PHP Manual 定義済みのインターフェイスとクラス WeakMa
...
した、 データのキャッシュを作ることです。 WeakMap は ArrayAccess , Iterator , Countable を実装しています。 よって、 ...
できます。 クラス概要 final class WeakMap implements ArrayAccess , Countable , IteratorAggregate { /* メソッド */ p ...
-
https://man.plustar.jp/php/class.weakmap.html
- [similar]
- 定数式における列挙型の値 7384
- « トレイト オブジェクトとの違い » PHP Manual 列挙型(Enum) 定数式における列挙型の値 定数式における
...
の case を参照できます。 しかしながら、列挙型の中で ArrayAccess のような暗黙のマジックメソッドの呼び出しを行うこと ...
全に正しい列挙型の定義です enum Direction implements ArrayAccess { case Up ; case Down ; public function offsetGet ...
-
https://man.plustar.jp/php/language.enumerations.expressions.html
- [similar]