update : 2015.11.03
php.shukuma.com검색:
|
iconv_strpos(PHP 5, PHP 7) iconv_strpos — Finds position of first occurrence of a needle within a haystack 설명
int iconv_strpos
( string
$haystack
, string $needle
[, int $offset = 0
[, string $charset = ini_get("iconv.internal_encoding")
]] )
Finds position of first occurrence of a
In contrast to 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
on the basis of the specified character set 인수
If 반환값
Returns the numeric position of the first occurrence of
If 참고
|