Home > Backend Development > PHP Tutorial > php strrpos() and strripos() functions_PHP tutorial

php strrpos() and strripos() functions_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-21 16:12:27
Original
1272 people have browsed it

strripos() function

Definition and Usage
strripos() function finds the last occurrence of a string within another string.
Returns the position if successful, false otherwise.

Syntax
strrpos(string,find,start)

参数 描述
string 必需。规定被搜索的字符串。
find 必需。规定要查找的字符。
start 可选。规定开始搜索的位置。

Tips and Notes
Note: This function is not case sensitive.

Example:

Copy code The code is as follows:

echo strripos("Hello world!","WO");
?>

Output: 6

strrpos() function

Definition and Usage
strrpos() function finds the last occurrence of a string in another string.

Returns the position if successful, false otherwise.

Syntax
strrpos(string,find,start)

参数 描述
string 必需。规定被搜索的字符串。
find 必需。规定要查找的字符。
start 可选。规定开始搜索的位置。

Tips and Notes
Note: This function is case sensitive. For case-insensitive searches, use strripos().

Example

Copy code The code is as follows:

echo strrpos("Hello world! ","wo");
?>

Output:
6

Use strrpos to verify whether the link is a link of http protocol

Copy the code The code is as follows:

$url="http://www.baidu.com";
if (strrpos($url, 'http://') !== 0)
echo "The link is a link with http protocol ";
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/313679.htmlTechArticlestrripos() function definition and usage strripos() function finds the last occurrence of a string in another string Location. Returns the position if successful, false otherwise. Grammar...
Related labels:
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template