当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP strpos()用法及代码示例


strops() 是 PHP 的内置函数。它用于查找字符串在另一个字符串或子字符串中第一次出现的位置。

用法:

int strpos ( string $haystack , mixed $needle [, int $offset = 0 ] );
参数 描述 必需/可选
string 指定要搜索的字符串。 Start
find 指定要查找的字符串。 Required
start 指定从何处开始搜索。 Optional

此函数将帮助我们找到 haystack 字符串中第一个出现的 pin 的数字位置

注意:strops() 函数区分大小写和二进制安全。

例子1

<?php
  $str1="Hello Php";
    $str2="Hello Php javatpoint!";
    echo "First string is:".$str1;
    echo "<br>";
    echo "First string is:".$str2;
    echo "<br>";
    echo "By using 'strpos()' function:".strpos("$str1,$str2","php");
    //$str1 and $str2 'Php'first letter is upper case so output is nothing.
    // It is case-sensitive
?>

输出:

First string is:Hello Php
First string is:Hello Php javatpoint!
By using 'strpos()' function:

例子2

<?php
    $str1="Hello php";
    $str2=" Hello php javatpoint!";
    echo "First string is:".$str1;
    echo "<br>";
    echo "First string is:".$str2;
    echo "<br>";
    echo "By using 'strpos()' function:".strpos("$str1,$str2","php");
    //Find the position of the first occurrence of "php" inside the string
?>

输出:

First string is:Hello php
First string is:Hello php javatpoint!
By using 'strpos()' function:6

例子3

<?php
$mystring = 'Hello PHP';
$findme   = 'Hello';
$pos = strpos($mystring, $findme);

// Note our use of ===.  Simply == would not work as expected
// because the position of 'Hello' was the 0th (first) character.
if ($pos === false) {
    echo "The string '$findme' was not found in the string '$mystring'";
} else {
    echo "The string '$findme' was found in the string '$mystring'";
    echo "<br>";
    echo " and exists at position $pos";
}
?>

输出:

The string 'Hello' was found in the string 'Hello PHP'
and exists at position 0

另见:

strchr():用于查找一个字符串在另一个字符串中的第一次出现。

stscroll():它是基于语言环境的字符串比较。

strcmp():二进制安全字符串比较。

参考:

http://php.net/manual/en/function.strpos.php







相关用法


注:本文由纯净天空筛选整理自 PHP strpos() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。