How to check word exist in string or not in PHP?

How to check word exist in string or not in PHP?

In this post we will give you information about How to check word exist in string or not in PHP?. Hear we will give you detail about How to check word exist in string or not in PHP?And how to use it also give you demo for it if it is necessary.

I want to share this posts because when i was working in my laravel application i need to find word from string, I mean check string contains word or not but i try to do, at last i found two way we can check easily. First one using preg_match and other one strpos() of php predefine. if you have question how to php regular expression match word then you can do this way:

Example 1:

$str = "Hi, I am from onlinecode";

if (strpos($str, "from") !== false) {

print_r("Yes, exists");

}

Example 2:

$str = "Hi, I am from onlinecode";

$result = preg_match("from", $str);

if($result == 1){

print_r("Yes, exists");

}

Hope this code and post will helped you for implement How to check word exist in string or not in PHP?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

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

8  +  2  =  

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US