2010/07/13

Remover etiquetas html con un parser en PHP

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



<?php
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
echo strip_tags($text);
echo "\n";
// Allow <p> and <a>
echo strip_tags($text, '<p><a>');
?>

No hay comentarios: