Voting

: four minus two?
(Example: nine)

The Note You're Voting On

jcastromail at yahoo dot es
3 years ago
PHP 8.1 changed the way how this method works.

Now, the fourth method must not be null. It could be 0 (for an int) but it could not be null, otherwise, it will raise a deprecated warning.

old:
$sth->bindParam('calories', $calories, PDO::PARAM_INT);
new:
$sth->bindParam('calories', $calories, PDO::PARAM_INT,0);

<< Back to user notes page

To Top