Search
 
SCRIPT & CODE EXAMPLE
 

PHP

remove html tags from string php

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

php remove html tags

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

Comment

hmtl remove tag php

<?php
function strip_tags_content($text, $tags = '', $invert = FALSE) {

  preg_match_all('/<(.+?)[s]*/?[s]*>/si', trim($tags), $tags);
  $tags = array_unique($tags[1]);
   
  if(is_array($tags) AND count($tags) > 0) {
    if($invert == FALSE) {
      return preg_replace('@<(?!(?:'. implode('|', $tags) .'))(w+).*?>.*?</1>@si', '', $text);
    }
    else {
      return preg_replace('@<('. implode('|', $tags) .').*?>.*?</1>@si', '', $text);
    }
  }
  elseif($invert == FALSE) {
    return preg_replace('@<(w+).*?>.*?</1>@si', '', $text);
  }
  return $text;
}
?>
Comment

php remove html tag

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

PREVIOUS NEXT
Code Example
Php :: how to get all roles in wordpress 
Php :: wordpress get permalink in loop 
Php :: How to check leap year in php? 
Php :: clear laravel cache 
Php :: mac install multiple php versions 
Php :: convert comma separated number to number in php 
Php :: wp wc get cart item attribute 
Php :: laravel new project command 
Php :: laravel check collection has key 
Php :: centos :Install or enable PHP gd extension. 
Php :: how to document php api with swagger 
Php :: guzzlehttp php basic auth 
Php :: get user avatar wordpress 
Php :: counting time execution duration in time laravel 
Php :: laravel meta csrf 
Php :: laravel tinker add user 
Php :: How to fix undefined index: name in PackageManifest.php line 131 error with Composer 
Php :: laravel get last month records 
Php :: laravel blade get authenticated user email 
Php :: php rename files in directory 
Php :: concat and search in laravel eloquent 
Php :: remove first character from string laravel 
Php :: convert string to array laravel 
Php :: convert object to array in php 
Php :: migration status php 
Php :: ci db query error 
Php :: blade set variable 
Php :: carbon two day ago 
Php :: error repoerting in php 
Php :: php include files 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =