w3resource

PHP: stripos() function

PHP: Find the first position of a case-insensitive substring in a string.

The stripos() function is used to determine the numeric position of the first occurrence of a string inside another string.

Version:

(PHP 5)

Syntax:

 stripos(main_string, search_string, start_position)

Parameters:

Name Description Required /
Optional
Type
main_string Specifies the string to examined. Required String
search_string Specifies the string to search with. Required String
start_position Sets the starting position of the first string. Optional Integer

Return value:

The position.

Value Type: Integer.

Pictorial Presentation

php-string-stripos()

Example:

<?php
echo stripos('W3RESOURCE.COM', 'W3');
?>

Output:

0

View the example in the browser

See also

PHP Function Reference

Previous: stripcslashes
Next: strlen



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/php/function-reference/stripos.php