“Remova as tags HTML da String php” Respostas de código

Remova as tags HTML da String php

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

PHP Remova as tags de extensão da string

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

Remova o HTML do string php

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

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

PHP Remover tag html

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

Respostas semelhantes a “Remova as tags HTML da String php”

Perguntas semelhantes a “Remova as tags HTML da String php”

Mais respostas relacionadas para “Remova as tags HTML da String php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código