Possible Duplicate:
Get content within a html tag using php and replace it after processing

I want replace

<a href="#" alt="" title="" class=""....>blalablabla</a>

with: blalablabla

link|improve this question

40% accept rate
what is your question? – robert Nov 25 '11 at 13:35
2  
I've tried to format to capture the HTML, but I'm not sure it's really what you want. Please edit accordingly if this is not right – Brian Agnew Nov 25 '11 at 13:36
feedback

closed as exact duplicate by Nicola Peluchetti, JMax, mario, Brian Agnew, Graviton Nov 25 '11 at 13:55

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 3 down vote accepted

You should use strip_tags() funciton

http://php.net/manual/en/function.strip-tags.php

Here is the example.

$sHTML = '<a href="#" alt="" title="" class=""....>blalablabla</a>';
$sStripped = strip_tags($sHTML);
echo $sStripped; // should echo "blalablabla"
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.