if i have an html line like:
<a href="your.link-and-stuf.php" title="here your page title and stuf">this word</a>
I want “this word” get out of it with php.
I tried with str_replace() but i didn’t get far. Because the link changes.
So how can i do this?
A simply solution is to use the built in function
strip_tagsa complex solution would be using regular expressionsStrip Tags Implementation
Regular Expression Matching