Search
 
SCRIPT & CODE EXAMPLE
 

PHP

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 :: php rsa encryption 
Php :: strcasecmp php 
Php :: mkdir permission denied php 
Php :: the posts pagination 
Php :: wordpress programmatically logout 
Php :: get all category custom post type wordpress dev 
Php :: php time ago 
Php :: laravel model with methos custom columns 
Php :: how to add an custom error to validater error in laravel 
Php :: php unix timestamp to date 
Php :: php sort array of array by key 
Php :: mac address php 
Php :: LARAVEL CREAT NEW TEST 
Php :: laravel check empty string 
Php :: wordpress custom post type add post_tag 
Php :: laravel asset 
Php :: add days to date in php 
Php :: laravel iteration 
Php :: download laravel 8 zip 
Php :: php switch statement 
Php :: format date in php 
Php :: why do we use php exceptions 
Php :: javascript inside php 
Php :: localhost didn’t send any data 
Php :: laravel db ssh 
Php :: set laravel local time to indonesia 
Php :: php check session status 
Php :: php check valid time format 
Php :: php hash 
Php :: How to check if email exists in laravel login 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =