📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 17:15:22
📂
/ (Root)
/
opt
/
alt
/
tests
/
alt-php85-pecl-mongodb_2.3.1-1.el8
/
tests
📍 /opt/alt/tests/alt-php85-pecl-mongodb_2.3.1-1.el8/tests
🔄 Refresh
✏️
Editing: writeconcern-getjournal-001.phpt
Read Only
--TEST-- MongoDB\Driver\WriteConcern::getJournal() --FILE-- <?php $tests = array( true, false, 1, 0, null, ); foreach ($tests as $test) { $wc = new MongoDB\Driver\WriteConcern(1, 0, $test); var_dump($wc->getJournal()); var_dump($wc->j); } // Test with default value $wc = new MongoDB\Driver\WriteConcern(1, 0); var_dump($wc->getJournal()); var_dump($wc->j); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- bool(true) bool(true) bool(false) bool(false) bool(true) bool(true) bool(false) bool(false) NULL NULL NULL NULL ===DONE===
💾 Save Changes
❌ Cancel