I have a string that looks like:
$string = \'http://google.com\';
How can I remove the http:
http:
$string = '<a href="http://google.com">http://google.com</a>'; $var = explode('http://',$string); echo $var[2];