How to search text in string using php ?

php
search
string search

Suppose I have string below,

$text = "Hello World!";

By using below code to get string position. By using string position we can check/search in a given string.

if (strpos($text, 'World') !== false) {
    echo 'true';
}

Basically the expected ouput is "true".

Note that the use of !== false is deliberate. The strpos() function finds the position of the first occurrence of a string inside another string.

You might also like:

Check null values in JavaScript?

04-02-2019 JavaScript null check null value

How to get current date and time (yyyy-mm-dd H:i:s) using javascript

09-03-2017 javascript date time

How to find Angular Errors

06-03-2017 errors angularjs exceptionHandler

Filter for insert HTML in Angular Js

06-03-2017 filter show html angular js html

Filter for replace text in Angular Js

05-03-2017 filter replace angular js