Possible Duplicate:
PHP split alternative?
What would be the command/syntax for replacing the depreciated split in the following syntax:
$frags = split("\/", $the_image_src);
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The php docs for split suggest preg_split or explode, which has the same syntax
http://php.net/manual/en/function.split.php
See TIPS. Typically, deprecated functions will give alternatives
EDIT