-
strpos() - 查找字符串 在另外一字符串中 第一次出現的位置(區分大小寫)
-
stripos() - 查找字符串 在另外一字符串中 第一次出現的位置(不區分大小寫)
-
strrpos() - 查找字符串 在另外一字符串中 最後一次出現的位置(區分大小寫)
-
strripos() - 查找字符串 在另外一字符串中 最後一次出現的位置(不區分大小寫)
參數:
strripos(string,find,start)
string:必需。規定要搜索的字符串。
find:必需。規定要查找的字符。
start:可選。規定開始搜索的位置。
例子:php
1#spa
<?php
字符串 就返回false,若是這個字符串位於字符串的開始的地方,就會返回0爲了區分0和false就必須使用等同操做符 === 或者 !==code
$str = 'abcdef';
$find = 'abc';
$pos = strpos($mystring, $findme);
// 注意這裏使用的是 ===不能使用==
// 由於若是沒有
if ($pos === false) {
ip
echo "$find不在$str中";
} else {
echo "$
";find
在$str
中
}
?>
2#字符串
<?php
string
$string = 'abcdef abcdef';
$find = strpos($string,'a',1); // $find
= 7, 不是 0
?>