summaryrefslogtreecommitdiff
path: root/Zend/tests/bug66218.phpt
blob: 5809af741e2ba6e01d80d3bd3e50503ab2208596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Bug #66218 zend_register_functions breaks reflection
--SKIPIF--
<?php
if (!function_exists("dl")) die("skip need dl");
?>
--FILE--
<?php
$tab = get_extension_funcs("standard");
$fcts = array("dl");
foreach ($fcts as $fct) {
    if (in_array($fct, $tab)) {
        echo "$fct Ok\n";
    }
}
?>
Done
--EXPECT--
dl Ok
Done