Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between PDOStatement::bindParam() and PDOStatement::bindValue()?

share|improve this question
Better worded question and answer: stackoverflow.com/questions/5077074/… – g . Dec 21 '12 at 10:30

closed as not a real question by Gordon, tereško, Druid, jonsca, PHP Developer Sep 6 '12 at 10:09

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 63 down vote accepted

The answer is in the documentation for bindParam:

Unlike PDOStatement::bindValue(), the variable is bound as a reference and will only be evaluated at the time that PDOStatement::execute() is called.

share|improve this answer
thanks, have missed that – koen Jul 24 '09 at 20:18
2  
I wonder if we can get 50 upwotes for a cite from manual page nowadays – Your Common Sense Mar 1 at 9:31
Probably not for something this simple. – acrosman Mar 1 at 16:54
1  
I just made it 60. – Chris Apr 24 at 0:51

Here are some I can think about :

  • With bindParam, you can only pass variables ; not values
  • with bindValue, you can pass both (values, obviously, and variables)
  • bindParam works only with variables because it allows parameters to be given as input/output, by "reference" (and a value is not a valid "reference" in PHP) : it is useful with drivers that (quoting the manual) :

support the invocation of stored procedures that return data as output parameters, and some also as input/output parameters that both send in data and are updated to receive it.

With some DB engines, stored procedures can have parameters that can be used for both input (giving a value from PHP to the procedure) and ouput (returning a value from the stored proc to PHP) ; to bind those parameters, you've got to use bindParam, and not bindValue.

share|improve this answer
thanks, can only accept one though – koen Jul 24 '09 at 20:17
1  
you're welcome :-) (don't worry about that ^^ ) – Pascal MARTIN Jul 24 '09 at 20:19
11  
I really like this answer! It now makes more sense as to why there are bindParam and bindValue. – Dreendle Mar 11 '11 at 11:13
Glad to hear that :-) – Pascal MARTIN Mar 11 '11 at 11:14
2  
This answer is more clear and easy to understand than the explanation in the official PHP documentation. – Isuru Oct 25 '12 at 9:11
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.