“Tags de tira PHP” Respostas de código

Tags de tira PHP

echo strip_tags("Hello <b>world!</b>");
Beautiful Bug

Tags de tira PHP

<?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

Php strip_tags tira html e tags php de uma string

<?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>');

// as of PHP 7.4.0 the line above can be written as:
// echo strip_tags($text, ['p', 'a']);
?>
SAMER SAEID

Tags de tira PHP

<?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']);
?>
Bewildered Boar

Respostas semelhantes a “Tags de tira PHP”

Perguntas semelhantes a “Tags de tira PHP”

Mais respostas relacionadas para “Tags de tira PHP” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código