xref: /PHP-5.5/ext/reflection/tests/015.phpt (revision 610c7fbe)
1--TEST--
2ReflectionExtension::getINIEntries()
3--SKIPIF--
4<?php extension_loaded('reflection') or die('skip'); ?>
5--INI--
6user_agent=php
7--FILE--
8<?php
9$ext = new ReflectionExtension("standard");
10$inis = $ext->getINIEntries();
11var_dump($inis["user_agent"]);
12?>
13--EXPECT--
14string(3) "php"
15
16