php-src/ext/reflection/tests/015.phpt

16 lines
252 B
PHP
Executable File

--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"
--UEXPECT--
unicode(3) "php"