I am using strip_tags() function to extract the contents of a link (the text part not the link part). The string is obtained from twitter. Unfortunately it returns the same thing.
The code is as follows
$a = $cur['source'];
echo strip_tags($a);
Input
<a href="http://twitter.com/download/android">Twitter for Android</a>
Output
<a href="http://twitter.com/download/android">Twitter for Android</a>
When I copy pasted the input to a string and tried strip_tags its working perfectly. What could be the reason/?
var_dump($a)give? – eis Oct 21 '12 at 7:35strip_tags(html_entity_decode($cur['source']));– Ninsuo Oct 21 '12 at 7:36