I am trying to split a string at keyword "http://"
.
explode("http://", $input);
This doesn't work for me because it does not only split the $input
but it also deletes "http://"
from the string, which i don't want to happen.
What is the most effecient and fast way of doing this ? I didn't find any function for this so far.