From 5d15149a5d50a9e5c688610444b4c2da1b4a3917 Mon Sep 17 00:00:00 2001 From: Anthony Bedford Date: Mon, 16 Nov 2009 11:55:02 +0000 Subject: [PATCH] Added note on taking care when using with call_user_func_array(). git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290808 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysqli/mysqli_stmt/bind-param.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/reference/mysqli/mysqli_stmt/bind-param.xml b/reference/mysqli/mysqli_stmt/bind-param.xml index ff03682a1c..25bc4cc1d7 100644 --- a/reference/mysqli/mysqli_stmt/bind-param.xml +++ b/reference/mysqli/mysqli_stmt/bind-param.xml @@ -36,6 +36,14 @@ mysqli_stmt_send_long_data to send the data in packets. + + + Care must be taken when using mysqli_stmt_bind_param in conjunction + with call_user_func_array. Note that mysqli_stmt_bind_param + requires parameters to be passed by reference, whereas call_user_func_array + can accept as a parameter a list of variables that can represent references or values. + +