Annotation of embedaddon/php/ext/reflection/tests/015.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: ReflectionExtension::getINIEntries()
        !             3: --SKIPIF--
        !             4: <?php extension_loaded('reflection') or die('skip'); ?>
        !             5: --INI--
        !             6: user_agent=php
        !             7: --FILE--
        !             8: <?php
        !             9: $ext = new ReflectionExtension("standard");
        !            10: $inis = $ext->getINIEntries();
        !            11: var_dump($inis["user_agent"]);
        !            12: ?>
        !            13: --EXPECT--     
        !            14: string(3) "php"
        !            15: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>