Skip to content
Advertisement

PDO : using bound parameters inside a function

I am using PDO to connect to MySQL, and I have an issue as follows : Given that code

JavaScript

Then, I want to call a function foo($stmt,…), How can I use the array $params inside that function which would assign new values for each element of the $params array?

Advertisement

Answer

You will need to pass the $params array to the function by reference, since the parameters are bound to references to the caller’s array.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement