assert.callback INI setting is deprecated¶
Description¶
The php.ini directive assert.callback is deprecated, alongside several features from the assert functions. It should not be set anymore in the code.
Note that a call to ini_get() will not generate the warning: only the ini_set().
Example¶
<?php
ini_set('assert.callback', 1);
?>
Solutions¶
Remove the call to
assert.callbackand its dependencies.