字符串函数库-搜索类型_PHP
程序员文章站
2022-04-21 17:35:25
...
兼容:(PHP 3, PHP 4, PHP 5)
strpos -- Find position of first occurrence of a string
查找字符在字符串第一次出现的位置
语法:int strpos ( string haystack, mixed needle [, int offset] )
返回值:整数
函数种类: 资料处理
内容说明:
英文:
Returns the numeric position of the first occurrence of needle in the haystack string. Unlike the strrpos(), this function can take a full string as the needle parameter and the entire string will be used.
If needle is not found, strpos() will return boolean FALSE.
If needle is not a string, it is converted to an integer and applied as the ordinal value of a character.
The optional offset parameter allows you to specify which character in haystack to start searching. The position returned is still relative to the beginning of haystack.
中文:
传回参数 needle在字串 haystack中第一次出现的位置,以数字表示。不像strrpos( ),此函式可以取参数 needle全部的字串,而且会使用全部的字串。如果找不到参数 needle,则传回 false。
如果参数 needle不是字串时,它会转换成整数并且按照字元的顺序值来使用。
参数 offset允许你去指定在 haystack中从那一个字元开始搜寻,传回的位置依然是相对於 haystack的起点。
*值得注意的是 needle 只能是一个字符,中文字等就不适合了。
例子讲解:
strpos()与substr_count()对比:
对比下面两个代码注意数字情况下,容易出现的错误,数字整数情况下不能看成字符串。
strpos -- Find position of first occurrence of a string
查找字符在字符串第一次出现的位置
语法:int strpos ( string haystack, mixed needle [, int offset] )
返回值:整数
函数种类: 资料处理
内容说明:
英文:
Returns the numeric position of the first occurrence of needle in the haystack string. Unlike the strrpos(), this function can take a full string as the needle parameter and the entire string will be used.
If needle is not found, strpos() will return boolean FALSE.
If needle is not a string, it is converted to an integer and applied as the ordinal value of a character.
The optional offset parameter allows you to specify which character in haystack to start searching. The position returned is still relative to the beginning of haystack.
中文:
传回参数 needle在字串 haystack中第一次出现的位置,以数字表示。不像strrpos( ),此函式可以取参数 needle全部的字串,而且会使用全部的字串。如果找不到参数 needle,则传回 false。
如果参数 needle不是字串时,它会转换成整数并且按照字元的顺序值来使用。
参数 offset允许你去指定在 haystack中从那一个字元开始搜寻,传回的位置依然是相对於 haystack的起点。
*值得注意的是 needle 只能是一个字符,中文字等就不适合了。
例子讲解:
php
$mystring = 'abc';
$findme= 'a';
$pos = strpos($mystring, $findme);
// Note our use of ===.Simply == would not work as expected
// because the position of 'a' 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 \" and exists at position $pos\";
}
// We can search for the character, ignoring anything before the offset
$newstring = 'abcdef abcdef';
$pos = strpos($newstring, 'a', 1); // $pos = 7, not 0
?>
strpos()与substr_count()对比:
php
$mystring = "Hello Chris\";
if (substr_count($mystring, \"Hello\") == 0)
echo \"no\";
// same as:
if (strpos($mystring, \"Hello\") === false)
echo \"no\";
?>
对比下面两个代码注意数字情况下,容易出现的错误,数字整数情况下不能看成字符串。
php
$val1=123;
$val2="123,456,789\";
if (strpos($val2, $val1)!==false) echo \"matched\";
else echo \"not matched\";
?>
结果为: not matched
php
$val1=(string)123;
$val2="123,456,789\";
if (strpos($val2, $val1)!==false) echo \"matched\";
else echo \"not matched\";
?>
结果为:not matched
上一篇: 怎么防止刷新网页重复插入数据
下一篇: mssql 收压数据库方法
推荐阅读
-
PHP mb_convert_encoding 获取字符串编码类型实现代码
-
以php中的比较运算符操作整型,浮点型,字符串型,布尔型和空类型
-
PHP 第二节 数据类型之字符串类型
-
以php中的自增自自减运算符操作(整型,浮点型,字符串型,布尔型,空类型)数据
-
以php中的算数运算符操作(整型,浮点型,字符串型,布尔型,空类型)数据
-
从源码角度看 PHP 字符串类型转换
-
php使用strpos判断字符串中数字类型子字符串出错的解决方法 原创
-
php使用正则表达式进行字符串搜索的方法
-
php数据类型-字符串型(string)
-
php mysqli扩展Client API library version版本不统一导致获取出来的数据讲整型转换成了字符串类型