PHP Upgrade for 5.3

Busy updating websites so they work in PHP 5.3
a somewhat boring task:
change each MySQL login password so it is stored in the new format
and update any depreciated code:
replace split with preg_split
replace ereg with preg_match
and wait for them to come to term!
Or postpone the problem till PHP 6 by ignoring all depreciated warnings:
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
and do the job properly later…

Links:
PHP 5.3 depreciated functions
error-reporting

Leave a Reply