How to convert HTML entities to characters in PHP

2 Answers

0 votes
$s = '<a href="https://www.collectivesolver.com">collectivesolver.com</a>';

echo html_entity_decode($s);

    
      
/*
run:
           

<a href="https://www.collectivesolver.com">collectivesolver.com</a>
    
*/

 



answered Oct 12, 2019 by avibootz
0 votes
$html = '&lt;p&gt;13 > 4 and 7 < 90 PHP\'s &amp; JAVA&lt;/p&gt;';

echo htmlspecialchars_decode($html);

 
  
/*
run:

<p>13 > 4 and 7 < 90 PHP's & JAVA</p>

*/

 



answered Oct 14, 2019 by avibootz

Related questions

1 answer 200 views
2 answers 203 views
4 answers 491 views
3 answers 319 views
1 answer 195 views
...