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