Deprecated: Function split() is deprecated in C:\xampp\htdocs\project
I have no idea what it means or how to fix
and it didnt happen with my host before
btw:
PHP: 5.3.0
MySQL: 5.1.36
Apache : 2.2.11
Deprecated: Function split() is deprecated in php 5.3.0
Moderator: General Moderators
-
vilasdh1232
- Forum Newbie
- Posts: 1
- Joined: Thu Dec 03, 2009 12:26 am
-
alex.barylski
- DevNet Evangelist
- Posts: 6267
- Joined: Tue Dec 21, 2004 5:00 pm
- Location: Winnipeg
Re: Deprecated: Function split() is deprecated in php 5.3.0
It means don't use that functiona anymore it is no longer supported or included in the build.
Use explode() or preg_split() instead
Cheers,
Alex
Use explode() or preg_split() instead
Cheers,
Alex
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
Re: Deprecated: Function split() is deprecated in php 5.3.0
split() is an alias for explode(), and as the error suggests is it deprecated (outdated) and will be removed in future versions.
So just replace split() with explode()
So just replace split() with explode()