Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
php-7.4
/
share
/
test
/
mongodb
/
tests
/
serverApi
/
//opt/php-7.4/share/test/mongodb/tests/serverApi/serverApi-var_export-001.phpt
--TEST-- MongoDB\Driver\ServerApi: var_export() --FILE-- <?php require_once __DIR__ . '/../utils/basic.inc'; $tests = [ new MongoDB\Driver\ServerApi('1'), new MongoDB\Driver\ServerApi('1', true), new MongoDB\Driver\ServerApi('1', null, true), new MongoDB\Driver\ServerApi('1', false, false), ]; foreach ($tests as $test) { echo var_export($test, true), "\n"; } ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- MongoDB\Driver\ServerApi::__set_state(array( 'version' => '1', 'strict' => NULL, 'deprecationErrors' => NULL, )) MongoDB\Driver\ServerApi::__set_state(array( 'version' => '1', 'strict' => true, 'deprecationErrors' => NULL, )) MongoDB\Driver\ServerApi::__set_state(array( 'version' => '1', 'strict' => NULL, 'deprecationErrors' => true, )) MongoDB\Driver\ServerApi::__set_state(array( 'version' => '1', 'strict' => false, 'deprecationErrors' => false, )) ===DONE===