I need a way of taking a string that contains <a href="url">something</a> and remove it completely from the string.
So,
$text = 'Something string <a href="url">something</a> some more string';
Any ideas?
|
I need a way of taking a string that contains So,
Any ideas? |
|||||||||||||
|
|
Removing an anchor is as simple as using this function
In case you would want to allow the tag, just add it as a parameter. |
|||
|
|
And, if there's a little more variables,
However, there are several risks and shortcomings when combining HTML and regex. |
|||||
|
|
I don't understand you question perfectly, but you can use these PHP functions to replace the string:
or
|
||||
|
|