Turn off deprecated errors in php 5.3

Post

Comments   |   PHP

Many admins after updating to PHP 5.3 see this errors, to turn off them use

error_reporting(E_ALL ^ E_DEPRECATED);

Leave a Reply