Warning messages for depreciated functions

In version PHP 5 there is a new warning state of E_STRICT

To remove there warning messages use :

error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);

Depreciated functions still exist and you get the warning. So they work as expected. However in a future version they might disappear.

Leave a Reply