W3docs

How to search text using php if ($text contains "World")

You can use the strpos() function in PHP to search for a specific string within another string.

You can use the strpos() function in PHP to search for a specific string within another string. The strpos() function returns the position of the first occurrence of a substring within a string, or false if the substring is not found. Here's an example of how you can use the strpos() function to check if the string "World" is present within the variable $text:

Example of using the strpos() function in PHP to search for a specific string within another string

php— editable, runs on the server

<div class="alert alert-info flex not-prose"> Watch a course <span class="hidden md:block">Watch a video course </span> Learn object oriented PHP</div>

Alternatively, you can use the preg_match() function for more complex pattern matching.

Example of using the preg_match() function for complex pattern matching in PHP

php— editable, runs on the server

It's worth noting that the strpos() function is case-sensitive. If you want to perform a case-insensitive search, you can use stripos() instead.