Skip to content

Instantly share code, notes, and snippets.

@jenovateurs
Last active December 1, 2019 17:20
Show Gist options
  • Save jenovateurs/6b822378cf51c6aefbd80a5f3b3d6170 to your computer and use it in GitHub Desktop.
Save jenovateurs/6b822378cf51c6aefbd80a5f3b3d6170 to your computer and use it in GitHub Desktop.
Nouveauté PHP 7.4 - Suppression de tags HTML, PHP
<?php
$sTexte = '<div><p><a href="/exemple">Exemple</a></p></div>';
//Manière classique
echo strip_tags($sTexte, '<p><a>')."\n";
//Nouvelle manière
echo strip_tags($sTexte, ['<p>','<a>']);
//Résultat
//<p><a href="/exemple">Exemple</a></p>
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment