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