You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The example page for Error Handling uses deprecated method wddx_serialize_value and a callback method signature that does not match the current documentation recommendation:
Callback signature in Example Page: function($errno, $errmsg, $filename, $linenum, $vars)
The example page for Error Handling uses deprecated method
wddx_serialize_value
and a callback method signature that does not match the current documentation recommendation:function($errno, $errmsg, $filename, $linenum, $vars)
handler( [int](https://www.php.net/manual/en/language.types.integer.php) $errno, [string](https://www.php.net/manual/en/language.types.string.php) $errstr, [string](https://www.php.net/manual/en/language.types.string.php) $errfile = ?, [int](https://www.php.net/manual/en/language.types.integer.php) $errline = ? ): [bool](https://www.php.net/manual/en/language.types.boolean.php)
The last parameter in example
$vars
maps to the old callback function parametererrcontext
which has been removed in PHP8.0+The text was updated successfully, but these errors were encountered: