How to Check If a String Contains HTML Tags in PHP?
This article is focused on how to check if a string contains html tags in php. you'll learn php check if string contains html tags. i explained simply step by step how to check string content have any html tag in php. it's simple example of check if string contains html tags php.
Sometime we need to check if a string content have html tag in php for some logic. as my requirement. i have some content have tag and some content does not have any tags i need to check because there is a https link so i need to add anchor tag for that. so i search on google and finally find out solution.
I will give you simple two example with output so you can check that.
Example 1:
<?php
$myString = "Hi Rahul, <p>This is dog.</p>, hep";
if (isHTML($myString)) {
echo "There is a HTML Tag in String";
}else{
echo "No HTML Tag in String";
}
function isHtml($string)
{
return preg_match("/<[^<]+>/",$string,$m) != 0;
}
?>
Output:
There is a HTML Tag in String
Example 2:
<?php
$myString = "Hi Rahul, This is dog., hep";
if (isHTML($myString)) {
echo "There is a HTML Tag in String";
}else{
echo "No HTML Tag in String";
}
function isHtml($string)
{
return preg_match("/<[^<]+>/",$string,$m) != 0;
}
?>
Output:
No HTML Tag in String
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Get Number of Characters in a String in JQuery?
- How to Convert String to Date in PHP?
- How to Check if String Contains Specific Word in Laravel?
- How to Make Read More Link from String in PHP?
- How to Remove White Space from String in PHP?
- PHP Check Word Exist in String or Not Example
- How to Check File is Exists or Not in PHP?
- How to Check If String is URL or Not in PHP?
- How to Convert Array Key to Lowercase in PHP?
- How to Generate Random Alphanumeric String in PHP?