Ejemplo 1: eliminar etiquetas html de la cadena php
<?php
echo strip_tags("Hello <b>world!</b>");
Ejemplo 2: eliminar etiquetas html php
// using strip_tags and str_replace for REMOVE all html TAGS in php
$text = '<p>Hello world.</p><!-- Comment --> <a href="https://learn-tech-tips.blogspot.com">Zidane</a>';
echo strip_tags($text);
//Hello world. Zidane
$short_description = strip_tags(str_replace(" ", " ", $short_description));
echo $short_description
// Allow <p> and <a>
echo strip_tags($text, '<p><a>');
// <p>Hello world.</p><a href="https://learn-tech-tips.blogspot.com">Zidane</a>
Ejemplo 3: eliminar html de la cadena php
echo strip_tags("Hello <b>world!</b>");
Ejemplo 4: eliminar todos los atributos de las etiquetas HTML en PHP
$text = '<div class="test"><p onmousemove="javascript:alert(1);">Clean <a href="https://foroayuda.es/#">text</a></p></div>';
$cleanText = preg_replace("/<([a-z][a-z0-9]*)[^>]*?(/?)>/si",'<$1$2>', $text);
Ejemplo 5: php elimina etiquetas html
<?php
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="https://foroayuda.es/#fragment">Other text</a>';
echo strip_tags($text);
//Test paragraph. Other text
// Allow <p> and <a>
echo strip_tags($text, '<p><a>');
//<p>Test paragraph.</p> <a href="https://foroayuda.es/#fragment">Other text</a>
// as of PHP 7.4.0 the line above can be written as:
// echo strip_tags($text, ['p', 'a']);
?>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)