sjgoodjob Posted January 25, 2011 Share Posted January 25, 2011 after upgrade php to version 5.3 i have so many problem Unknown error (8192): Function split() is deprecated in there are lots of error like this?? anyone could help me to solve this problem Quote Link to comment https://forums.phpfreaks.com/topic/225616-php-53-version-problem/ Share on other sites More sharing options...
PFMaBiSmAd Posted January 25, 2011 Share Posted January 25, 2011 For the problem with the split() statement - Note: As of PHP 5.3.0, the regex extension is deprecated in favor of the PCRE extension. Calling this function will issue an E_DEPRECATED notice. Tip preg_split(), which uses a Perl-compatible regular expression syntax, is often a faster alternative to split(). If you don't require the power of regular expressions, it is faster to use explode(), which doesn't incur the overhead of the regular expression engine. If you have other errors you need help with, you would need to post the error and the code that produces the error. Quote Link to comment https://forums.phpfreaks.com/topic/225616-php-53-version-problem/#findComment-1164945 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.