string iconv_strpos(string $haystack, string $needle, int $offset, string $encoding)
Note: strpos(), the return value of iconv_strpos() is the number of characters that appear before the needle, rather than the offset in bytes to the position where the needle has been found. The characters are counted based on the specified character set encoding.
Parameters
iconv_strpos() function accepts four different parameters− $haystack, $needle, $offset and $encoding.
$haystack− It denotes the whole string.
$needle− The $needle parameter is used to search the substring from the given whole string.
$offset− The $offset parameter is optional it is used to specify the position from which the search should be performed. If the offset is negative then it will count from the end of the string.
$encoding− if the $encoding parameter is absent or null, then the string will assume that it may be encoded in iconv.internal_encoding.
Return Values
The iconv_strpos() function returns the numeric position of the first occurrence of the needle in the haystack. If the needle is not found, then the function will return False.
Note: From PHP 8.0 version, encoding is nullable and from PHP 7.1, iconv_strpos() function support for the negative offsets has been added.
Example 1
Live Demo
1 2 3 4 5 6 |
|
输出
1 |
|
Example 2
Live Demo
1 2 3 4 5 6 7 |
|
输出
1 |
|
以上就是PHP – iconv_strpos() 函数 – 在字符串中查找第一个出现的子串的位置的详细内容,更多请关注php中文网其它相关文章!
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。