Passing false or null is deprecated since 8.4
Description
Passsing false or null to dba_key_split() is deprecated since PHP 8.4.
Example
<?php
var_dump(dba_key_split(null));
var_dump(dba_key_split(false));
?>
Alternatives
- Use an empty string.
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
Passsing false or null to dba_key_split() is deprecated since PHP 8.4.
<?php
var_dump(dba_key_split(null));
var_dump(dba_key_split(false));
?>