Results of 1 - 10 of about 109 for stdClass (0.004 sec.)
- Deserialization from BSON 11290
- « Serialization to BSON Security » PHP Manual Persisting Data Deserialization from BSON Deserial
...
ded) without a __pclass property [1] becomes a PHP stdClass object, with each BSON document key set as a publi ...
c stdClass property. A BSON document (root or embedded) with ...
implement the MongoDB\BSON\Persistable interface, stdClass will be used and each BSON document key (including ...
__pclass ) will be set as a public stdClass property. The __pclass functionality relies on the ...
-
https://man.plustar.jp/php/mongodb.persistence.deserialization.html
- [similar]
- Manipulation 10106
- « Threaded::isTerminated Threaded::notify » PHP Manual Threaded Manipulation Threaded::merge (PE
...
t ( $array ) < 10 ) $array [] = count ( $array ); $stdClass = new stdClass (); $stdClass -> foo = "foo" ; $std ...
Class -> bar = "bar" ; $stdClass -> baz = "baz" ; $safe = new Threaded (); $safe -> ...
$array ); $safe -> foo = "bar" ; $safe -> merge ( $stdClass , false ); var_dump ( $safe ); ?> 上の例の出力は以 ...
-
https://man.plustar.jp/php/threaded.merge.html
- [similar]
- Returns an object for BSON serialization 9470
- « MongoDB\Driver\ReadPreference MongoDB\Driver\ReadPreference::__construct » PHP Manual MongoDB\
...
の例の出力は、 たとえば以下のようになります。 object(stdClass)#2 (1) { ["mode"]=> string(7) "primary" } { "mode" ...
の例の出力は、 たとえば以下のようになります。 object(stdClass)#2 (2) { ["mode"]=> string(9) "secondary" ["tags"] ...
=> array(3) { [0]=> object(stdClass)#1 (1) { ["dc"]=> string(2) "ny" } [1]=> object(st ...
sf" ["use"]=> string(9) "reporting" } [2]=> object(stdClass)#4 (0) { } } } { "mode" : "secondary", "tags" : [ ...
-
https://man.plustar.jp/php/mongodb-driver-readpreference.bsonserialize.html
- [similar]
- 次のエントリに移動する 9151
- « SplObjectStorage::key SplObjectStorage::offsetExists » PHP Manual SplObjectStorage 次のエントリ
...
の例 <?php $s = new SplObjectStorage (); $o1 = new StdClass ; $o2 = new StdClass ; $s -> attach ( $o1 , "d1" ) ...
力は、 たとえば以下のようになります。 int(0) object(stdClass)#2 (0) { } int(1) object(stdClass)#3 (0) { } 参考 ...
: 移動 , エントリ , SplObjectStorage , 次 , next , stdClass , int , パラメータ , ストレージ , オブジェクト ...
-
https://man.plustar.jp/php/splobjectstorage.next.html
- [similar]
- 型演算子 8846
- « 配列演算子 制御構造 » PHP Manual 演算子 型演算子 型演算子 instanceof を使用して、 ある PHP 変数
...
{ } $a = new MyClass ; var_dump (!( $a instanceof stdClass )); ?> 上の例の出力は以下となります。 bool(true) 最 ...
= imagecreate ( 5 , 5 ); var_dump ( $a instanceof stdClass ); // $a は配列です var_dump ( $b instanceof stdCl ...
ass ); // $b は NULL です var_dump ( $c instanceof stdClass ); // $c はリソースです var_dump ( FALSE instanceo ...
f stdClass ); ?> 上の例の出力は以下となります。 bool(false) b ...
-
https://man.plustar.jp/php/language.operators.type.html
- [similar]
- イテレータの現在位置を返す 8846
- « SplObjectStorage::getInfo SplObjectStorage::next » PHP Manual SplObjectStorage イテレータの現在
...
の例 <?php $s = new SplObjectStorage (); $o1 = new StdClass ; $o2 = new StdClass ; $s -> attach ( $o1 , "d1" ) ...
力は、 たとえば以下のようになります。 int(0) object(stdClass)#2 (0) { } int(1) object(stdClass)#3 (0) { } 参考 ...
next , パラメータ , エントリ , 要素 , ストレージ , stdClass , rewind ...
-
https://man.plustar.jp/php/splobjectstorage.key.html
- [similar]
- 変数の文字列表現を出力または返す 8757
- « var_dump ウェブサービス » PHP Manual 変数操作 関数 変数の文字列表現を出力または返す var_export
...
は null を返します。 変更履歴 バージョン 説明 7.3.0 stdClass オブジェクトは、 存在しないメソッド stdClass::__se ...
スポートされるようになりました。 この変更によって、 stdClass がエクスポート可能になり、 このバージョンより前の ...
例の出力は以下となります。 3.1 例2 PHP 7.3.0 以降で stdClass をエクスポートする <?php $person = new stdClass ; ...
を実装している必要があります。 これの唯一の例外は stdClass です。 stdClass は、配列をオブジェクトにキャストし ...
-
https://man.plustar.jp/php/function.var-export.html
- [similar]
- データの比較にコールバック関数を用い、配列の差を計算する 8680
- « array_udiff_uassoc array_uintersect_assoc » PHP Manual 配列 関数 データの比較にコールバック関数
...
全てを有する配列を返します。 例 例1 array_udiff() で stdClass オブジェクトを使う例 <?php // 比較する配列 $array1 ...
= array(new stdclass , new stdclass , new stdclass , new stdclass , ); ...
$array2 = array( new stdclass , new stdclass , ); // オブジェクトにプロパティを設 ...
; ?> 上の例の出力は以下となります。 Array ( [0] => stdClass Object ( [width] => 11 [height] => 3 ) [1] => stdC ...
-
https://man.plustar.jp/php/function.array-udiff.html
- [similar]
- 現在のストレージの要素を返す 8451
- « SplObjectStorage::count SplObjectStorage::detach » PHP Manual SplObjectStorage 現在のストレージ
...
の例 <?php $s = new SplObjectStorage (); $o1 = new StdClass ; $o2 = new StdClass ; $s -> attach ( $o1 , "d1" ) ...
の例の出力は、 たとえば以下のようになります。 object(stdClass)#2 (0) { } string(2) "d1" object(stdClass)#3 (0) { ...
エントリ , string , パラメータ , 位置 , バージョン , stdClass , getInfo ...
-
https://man.plustar.jp/php/splobjectstorage.current.html
- [similar]
- イテレータの現在のエントリに関連づけられたデータを返す 8451
- « SplObjectStorage::getHash SplObjectStorage::key » PHP Manual SplObjectStorage イテレータの現在
...
の例 <?php $s = new SplObjectStorage (); $o1 = new StdClass ; $o2 = new StdClass ; $s -> attach ( $o1 , "d1" ) ...
の例の出力は、 たとえば以下のようになります。 object(stdClass)#2 (0) { } string(2) "d1" object(stdClass)#3 (0) { ...
エントリ , データ , getInfo , パラメータ , string , stdClass , ストレージ , 要素 , 位置 ...
-
https://man.plustar.jp/php/splobjectstorage.getinfo.html
- [similar]