mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-01 13:52:11 +02:00
39 lines
940 B
PHP
39 lines
940 B
PHP
--TEST--
|
|
MongoDB\Driver\Cursor::toArray() respects type map
|
|
--SKIPIF--
|
|
<?php require __DIR__ . "/../utils/basic-skipif.inc"; CLEANUP(STANDALONE) ?>
|
|
--FILE--
|
|
<?php
|
|
use MongoDB\BSON as BSON;
|
|
|
|
require_once __DIR__ . "/../utils/basic.inc";
|
|
|
|
class MyArrayObject extends ArrayObject implements BSON\Unserializable
|
|
{
|
|
function bsonUnserialize(array $data)
|
|
{
|
|
parent::__construct($data);
|
|
}
|
|
}
|
|
|
|
$manager = new MongoDB\Driver\Manager(STANDALONE);
|
|
|
|
$bulk = new MongoDB\Driver\BulkWrite();
|
|
$bulk->insert(array('_id' => 1, 'x' => array(1, 2, 3)));
|
|
$bulk->insert(array('_id' => 2, 'x' => array(4, 5, 6)));
|
|
$manager->executeBulkWrite(NS, $bulk);
|
|
|
|
$cursor = $manager->executeQuery(NS, new MongoDB\Driver\Query(array('x' => 1)));
|
|
$cursor->setTypeMap(array("array" => "MyArrayObject"));
|
|
|
|
$documents = $cursor->toArray();
|
|
|
|
var_dump($documents[0]->x instanceof MyArrayObject);
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECT--
|
|
bool(true)
|
|
===DONE===
|