Php: how to find the position of a string through strpos. strpos string _ PHP Tutorial

Source: Internet
Author: User
Php uses strpos to find the position where a string appears. Php uses strpos to find the position of a string. This document describes how to use strpos to find the position of a string. Share it with you for your reference. Specific php method for finding the position of a string through strpos, strpos string

This example describes how to use strpos to locate a string in php. Share it with you for your reference. The specific analysis is as follows:

Strpos is used to find the position where a string appears for the first time in another string. strpos is case-sensitive. if not found, false is returned. Therefore, strpos has two types of return values: integer, one is the bool type, which requires attention during development.

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

Output result: 6

Because strpos has two types of return values, it is best to use === three equal signs to strictly compare the types when determining whether to find the substring.

<?php$haystack = "needle23423432";$pos = strpos($haystack, "needle");if ($pos==false) { print("Not found based (==) test\n");} else { print("Found based (==) test\n");}if ($pos===false) { print("Not found based (===) test\n");} else { print("Found based (===) test\n");}?>

The above code returns the following results:

This script will print: Not found based (==) testFound based (===) test The (===) test is correct.

I hope this article will help you with php programming.

Examples in this article describes how to use strpos to find the position of a string in php. Share it with you for your reference. Details...

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.