mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
24 lines
578 B
PHP
24 lines
578 B
PHP
--TEST--
|
|
Bug #31875 get_defined_functions() should not list disabled functions
|
|
--CREDITS--
|
|
Willian Gustavo Veiga <contact@willianveiga.com>
|
|
--INI--
|
|
disable_functions=dl
|
|
--FILE--
|
|
<?php
|
|
$disabled_function = 'dl';
|
|
|
|
$functions = get_defined_functions();
|
|
var_dump(in_array($disabled_function, $functions['internal']));
|
|
|
|
$functions = get_defined_functions(false);
|
|
var_dump(in_array($disabled_function, $functions['internal']));
|
|
|
|
$functions = get_defined_functions(true);
|
|
var_dump(in_array($disabled_function, $functions['internal']));
|
|
?>
|
|
--EXPECTF--
|
|
bool(true)
|
|
bool(true)
|
|
bool(false)
|