Closed GoogleCodeExporter closed 9 years ago
Fixed in framework itself.
For 3rd party components you have to fix it by your own or contact vendor.
BTW: Have you found a list of deprecated 5.3 functions?
Original comment by GODZilla...@gmail.com
on 26 Apr 2009 at 6:28
The deprecated functions and their preferred counterparts/alternatives are:
split() => preg_split(), ereg() => preg_match() ereg_replace() =>
preg_replace()
When no regular expressions are required split() can be replaced with
explode().
Also the latter functions are usually faster anyway than the deprecated ones,
so
even when PHP 5.3 compatibility isn't required or a priority, it's advisable to
make
the replacements/modifications.
Original comment by google...@pcforum.hu
on 26 Apr 2009 at 1:03
Also see: http://wiki.php.net/doc/scratchpad/upgrade/53 for other changes.
Original comment by google...@pcforum.hu
on 26 Apr 2009 at 1:17
Issue 190 has been merged into this issue.
Original comment by rojaro@gmail.com
on 14 Jul 2009 at 9:34
Original issue reported on code.google.com by
google...@pcforum.hu
on 25 Apr 2009 at 4:22