Join Up!
104887 members and counting!

 
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links 
search for in the  
previouscall_user_funccreate_functionnext
Last updated: Tue, 28 May 2002
view the printer friendly version or the printer friendly version with notes or change language to Czech | German | Spanish

call_user_func_array

(PHP 4 >= 4.0.4)

call_user_func_array --  Call a user function given with an array of parameters

Description

mixed call_user_func_array ( string function_name [, array paramarr])

Call a user defined function given by function_name, with the parameters in paramarr. For example:

function debug($var, $val)
    echo "***DEBUGGING\nVARIABLE: $var\nVALUE:";
    if (is_array($val) || is_object($val) || is_resource($val))
        print_r($val);
    else
        echo "\n$val\n";
    echo "***\n";
}

$c = mysql_connect();
$host = $HTTP_SERVER_VARS["SERVER_NAME"];

call_user_func_array ('debug', array("host", $host));
call_user_func_array ('debug', array("c", $c));
call_user_func_array ('debug', array("HTTP_POST_VARS", $HTTP_POST_VARS));

See also: call_user_func(), call_user_method(), call_user_method_array().

Huomaa: This function was added to the CVS code after release of PHP 4.0.4pl1

User Contributed Notes
call_user_func_array
add a note about notes
There are no user contributed notes for this page.
previouscall_user_funccreate_functionnext
Last updated: Tue, 28 May 2002
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by: http://phpbuilder.com/
Last updated: Thu Oct 31 18:34:28 2002 EST