I have a variable $link_item
, it's used with echo
and gives the strings like
<span class="name">Google</span>http://google.com
How to remove "<span class="name">Google</span>
" from string?
It should give just "http://google.com".
Heard it can be done with regex()
, please help.