ItSolutionStuff.com

PHP Check Word Exist in String or Not Example

By Hardik Savani • May 14, 2024
PHP

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:

<?php

$str = "Hi, I am from itsolutionstuff.com";

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

print_r("Yes, exists");

}

?>

Example 2:

$str = "Hi, I am from itsolutionstuff.com";

<?php

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

if($result == 1){

print_r("Yes, exists");

}

?>

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get Folder Path from File Path in PHP?

Read Now →

How to Get Filename from Path in PHP?

Read Now →

How to Get File Name without Extension in PHP?

Read Now →

File Upload with Progress Bar using jQuery Ajax and PHP Example

Read Now →

How to Get a Current Page URL in PHP?

Read Now →

How to Check File is Exists or Not in PHP?

Read Now →

How to Check If String is URL or Not in PHP?

Read Now →

How to Convert Object into Array in PHP?

Read Now →

How to Get Minimum Key Value of Array in PHP?

Read Now →

How to access PHP variables in JQuery?

Read Now →

How to Count Number of Files in a Directory in PHP?

Read Now →

How to Find Day Name from Specific Date in PHP?

Read Now →

How to Remove Null Values from Array in PHP?

Read Now →

How to Merge Two Array with Same Keys without Loop in PHP?

Read Now →