“Entfernen Sie HTML -Tags von String PHP” Code-Antworten

Entfernen Sie HTML -Tags von String PHP

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

PHP -Span -Tags von String entfernen

echo $new_string = preg_replace('/<span[^>]+\>/i', '', $content); 
Geeky Bravo

Entfernen Sie HTML von String PHP

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

PHP HTML -Tags entfernen

<?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 HTML -Tag entfernen

<?php
$str = "<h1>Hello WorldÆØÅ!</h1>";
# Remove all HTML tags and all characters with ASCII value > 127, from a string:
$newstr = filter_var($str, FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH);
echo $newstr;
# Result: Hello World!
Tiago F2

Ähnliche Antworten wie “Entfernen Sie HTML -Tags von String PHP”

Fragen ähnlich wie “Entfernen Sie HTML -Tags von String PHP”

Weitere verwandte Antworten zu “Entfernen Sie HTML -Tags von String PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen