Detailed description of the methods and functions for PHP to process strings similar to indexof, and detailed description of indexof

Source: Internet
Author: User

Detailed description of the methods and functions for PHP to process strings similar to indexof, and detailed description of indexof

Detailed description of the methods and functions for PHP to process strings similar to indexof

In PHP, there are two functions or methods for processing strings similar to indexof. They are strpos functions and stripos functions. The usage of these two functions is similar.

If the strpos function processes a string that contains the string, it returns the position of the first occurrence of the string. If the string does not appear, it returns false. String is case sensitive.

When the stripos function processes a string that contains the string, it returns the position where the string appears for the first time. If the string does not appear, it returns false. It is not case sensitive to strings.

PHP strpos () function

Definition and usage

The strpos () function is used to locate the first occurrence of a string in another string.

Note: The strpos () function is case sensitive.

Note: This function is binary secure.

Syntax

strpos(string, find, start)

Parameter description

String: required. Specifies the string to be searched.
Find: required. Specifies the string to be searched.
Start: Optional. Specifies the location where the search starts.

Return Value

Returns the position where the string appears for the first time in another string. If no string is found, FALSE is returned.

Note: The string position starts from 0, not from 1.

Example

<?phpecho strpos('Hello world!', 'wo');?>

Output: 6

PHP stripos () function

Definition and usage

The stripos () function is used to locate the first occurrence of a string in another string.

Note: The stripos () function is case-insensitive.

Note: This function is binary secure.

Syntax

stripos(string,find,start)

Parameter description

String: required. Specifies the string to be searched.
Find: required. Specifies the string to be searched.
Start: Optional. Specifies the location where the search starts.

Return Value

Returns the position where the string appears for the first time in another string. If no string is found, FALSE is returned.

Note: The string position starts from 0, not from 1.

Example

<?phpecho stripos('Hello world!', 'WO');?>

Output: 6

Thank you for reading this article. I hope it will help you. Thank you for your support for this site!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.