|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-06-14 23:48 UTC] sesser@php.net
[2004-06-14 23:57 UTC] dietrich dot ayala at foundstone dot com
[2004-06-15 09:10 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 15:00:02 2025 UTC |
Description: ------------ os: winxp webserver: iis/fastcgi i set the disable_functions option in php.ini to a value of: call_user_func_array then i restart iis, make sure no php.exe instances are running. then i try my repro code below, and it works fine. it should not let me use this function. Reproduce code: --------------- <?php function test($arg) { echo $arg; } $arr = array('hello world'); call_user_func_array('test', $arr); ?> Expected result: ---------------- should not let the user use the call_user_func_array function Actual result: -------------- prints "hello world"