mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-01 05:42:09 +02:00
39 lines
816 B
PHP
39 lines
816 B
PHP
--TEST--
|
|
phpinfo()
|
|
--INI--
|
|
mongodb.debug=stderr
|
|
--SKIPIF--
|
|
<?php if (defined("HHVM_VERSION_ID")) exit("skip HHVM does not do phpinfo() this way"); ?>
|
|
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
|
|
--FILE--
|
|
<?php
|
|
require_once __DIR__ . "/../utils/basic.inc";
|
|
|
|
ini_set("mongodb.debug", "stdout");
|
|
phpinfo();
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
%a
|
|
mongodb
|
|
|
|
MongoDB support => enabled
|
|
MongoDB extension version => 1.%d.%d%S
|
|
MongoDB extension stability => %s
|
|
libbson bundled version => 1.%d.%d%S
|
|
libmongoc bundled version => 1.%d.%d%S
|
|
libmongoc SSL => enabled
|
|
libmongoc SSL library => %s
|
|
libmongoc crypto => enabled
|
|
libmongoc crypto library => %s
|
|
libmongoc crypto system profile => %s
|
|
libmongoc SASL => enabled
|
|
|
|
Directive => Local Value => Master Value
|
|
mongodb.debug => stdout => stderr
|
|
|
|
%a
|
|
===DONE===
|