How to use php strpos function?

青灯夜游
Release: 2023-02-22 22:58:02
Original
2571 people have browsed it

php The strpos() function is used to find the first occurrence of a string in another string (case sensitive). The syntax is strpos(string,find,start). If the string is not found, FALSE is returned.

How to use php strpos function?

php How to use the strpos() function?

The strpos() function finds the first occurrence of a string in another string (case-sensitive).

Syntax:

strpos(string,find,start)
Copy after login

Parameters:

● String: Required. Specifies the string to search for.

● Find: Required. Specifies the string to search for.

● Start: Optional. Specifies where to start the search.

Return value: Returns the position of the first occurrence of a string in another string, or returns FALSE if the string is not found.

Note: The strpos() function is case-sensitive; this function is binary safe.

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

Let’s take a look at how to use the php strpos() function through an example.

Example 1:

<?php
echo strpos("You love php, I love php too!","php");
?>
Copy after login

Output:

9
Copy after login

Example 2:

<?php
var_dump(strpos("You love php, I love php too!","PHP")) ;
?>
Copy after login

Output:

bool(false)
Copy after login

The above is the detailed content of How to use php strpos function?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!