mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-27 18:43:14 +02:00
19 lines
254 B
PHP
19 lines
254 B
PHP
--TEST--
|
|
phpinfo() reports mongodb.debug (default and overridden)
|
|
--INI--
|
|
mongodb.debug=stderr
|
|
--FILE--
|
|
<?php
|
|
|
|
ini_set("mongodb.debug", "stdout");
|
|
phpinfo();
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
%a
|
|
mongodb.debug => stdout => stderr
|
|
%a
|
|
===DONE===
|