“Tags de bande PHP” Réponses codées

Tags de bande PHP

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

Tags de bande 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 strip html et php tags d'une chaîne

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

Réponses similaires à “Tags de bande PHP”

Questions similaires à “Tags de bande PHP”

Plus de réponses similaires à “Tags de bande PHP” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code