|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-02-27 01:19 UTC] pajoye@php.net
[2010-02-27 01:19 UTC] pajoye@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 01:00:02 2025 UTC |
Description: ------------ $m = new Mongo("mongodb://dbuser:pass@localhost/"); produces a completely empty page, even when this is enclosed in a try..catch..finally. $m = new Mongo("mongodb://dbuser:pass@localhost"); opens the mongo db as expected this uses the 1.0.4 Mongo driver on Debian Lenny 64 bit. Reproduce code: --------------- $m = new Mongo("mongodb://dbuser:pass@localhost/"); Expected result: ---------------- Either an exception or the same result as $m = new Mongo("mongodb://dbuser:pass@localhost"); (opening the db)