mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
3e963f8eb4
Functions registered using zend_register_functions instead of zend_module_entry.functions are not seen on reflection. Ex: additional_functions from api_module_entry. Ex: in CLI, dl, cli_set_process_title and cli_get_process_title Note: - also affects functions overrided in extension (should be be reported in extension, where overrided, not in original extension) - also allow extension to call zend_register_functions for various list (instead of having a single bug list)
22 lines
368 B
PHP
22 lines
368 B
PHP
--TEST--
|
|
Bug #66218 zend_register_functions breaks reflection
|
|
--SKIPIF--
|
|
<?php
|
|
if (PHP_SAPI != "cli") die("skip CLI only test");
|
|
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
|
|
--EXPECTF--
|
|
dl Ok
|
|
Done
|