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:
File Upload Using Angular Js and Node Js28-05-2018 AngularJs Node js file upload multer module |
How to submit form using javascript or jquery.16-04-2017 javascript jquery submit form |
How to use http-post request in node js14-03-2017 http-post module node js |
Filter for insert HTML in Angular Js06-03-2017 filter show html angular js html |
How to get drop down value when drop down change using javascript27-02-2017 onchange events dropdown javascript functions |