PHP 8.5.0 Beta 1 available for testing

Voting

: max(nine, four)?
(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