Remove html tags from string using php

How to remove html tags from string using php?

We can remove html tags from string by using strip_tags() in php. The strip_tags() function strips a string from HTML, XML, and PHP tags.

Syntax : strip_tags(string,allow)

The first parameter string is mandatory and it specifies input string which we want to strip. The second parameter allow is an optional parameter, in this we can specify the tags which we can allow in that string. The tags specified in allow will not be removed.

The output will be the string without tags.

PHP :

<?php
    echo strip_tags("<p>Test <b><i>string..!</i></b></p>","<b>");
?>

In this example html tags <p>,<i> will be removed and the <b> tag will be there because we specified <b> tag as allow tag.

For more PHP solutions click here.

Related Posts

forest fire

Forest Fire – Techgig, All testcases passed. Challenge #1

Forest FireĀ (100 Marks) Challenge 1: Forest fire You are camping in a forest area at night. You are living with the forest officers to experience their challenges…

the magic wand

The Magic Wand – TechGig PHP answer, all test cases passed. Challenge #2

The Magic Wand – TechGig PHP answer – all testcases passed The Magic Wand (100 Marks) You are a wizard who possesses the magic wand that can be…

PHP interview Questions and Answers

What is PHP? Answer: PHP stands for Hypertext Preprocessor. It is a widely used server-side scripting language primarily designed for web development. PHP code is embedded within…

install php

A Step-by-Step Guide on How to Install PHP

Install PHP : A Step-by-Step Guide on How to Install PHP Introduction: PHP is a widely used server-side scripting language that powers countless websites and web applications….

what is php

What is PHP? Understanding PHP: The Powerhouse of Web Development

Introduction: What is PHP? Understanding PHP: The Powerhouse of Web Development: In the world of web development, PHP stands tall as one of the most widely-used and…

php form

Complete Php form example

Here we are going to check how to create a php form and insert its values to database table. In this example we will be submitting the…

Leave a Reply

Your email address will not be published. Required fields are marked *