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));

?>

Solutions

  • Use an empty string.