“tags html limpas php” Respostas de código

tags html limpas php

strip_tags($var);
Malario

PHP Remova tags HTML

<?php
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#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="#fragment">Other text</a>
// as of PHP 7.4.0 the line above can be written as:
// echo strip_tags($text, ['p', 'a']);
?>

Alberto Peripolli

Respostas semelhantes a “tags html limpas php”

Perguntas semelhantes a “tags html limpas php”

Mais respostas relacionadas para “tags html limpas php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código