update : 2015.11.03
php.shukuma.com검색:
|
MongoDB\BSON\Unserializable::bsonUnserialize(mongodb >=1.0.0) MongoDB\BSON\Unserializable::bsonUnserialize — Constructs the object from a BSON array or document 설명
abstract public void MongoDB\BSON\Unserializable::bsonUnserialize
( array
$data
)Called during unserialization of the object from BSON. The properties of the BSON array or document will be passed to the method as an array.
인수
반환값The return value from this method is ignored. 예제Example #1 MongoDB\BSON\Unserializable::bsonUnserialize() example
<?php 위 예제의 출력: object(MyDocument)#1 (1) { ["data":"MyDocument":private]=> array(1) { ["foo"]=> string(3) "bar" } } 참고
|