I have updated PHP version on my server and i get many ‘Deprecated’ message on displaying website pages.I have set display_errors to off in php.ini setting not they’ve gone.But I want to know how can i fix these Deprecated issue ?
Edited: the most seen error is this:
” Deprecated: Assigning the return value of new by reference is deprecated in …. “
Deprecated features are documented in the appendices of the PHP manual (see the “Migrating from…” chapters). Meanwhile, you can get them ignored in legacy code by setting an appropriate error_reporting level (one that does not include the E_DEPRECATED flag).