PHP is telling me that split is deprecated, what's the alternative method I should use?
|
|
|||||||||||||||
|
|
If you do not need the regular expression functionality, then |
|||
|
|
|
Also for the future, if you ever want to know what PHP wants you to use if something is depreciated you can always check out the function in the manual and it will tell you alternatives. |
|||
|
|
|
want to clear here that preg_split() is far away from it but explode() can be used in smiller way as split() following is the comparison between split() and explode() usage How was split() used
URL: http://php.net/manual/en/function.split.php How explode() can be used
URL: http://php.net/manual/en/function.explode.php Here is how we can use it :) |
|||
|
|
|
You can use easier preg_match instead...better and faster all of those ones... $var = "Get this var" preg_match("/(.*)<\/tag>/", $var , $new_var); echo $new_var['1']; => Get this var |
|||
|
|
|
Yes, I would use explode or you could use:
Which is the advised method with PHP 6. preg_split Documentation |
|||
|
|