update : 2015.11.03
php.shukuma.com검색:
|
iconv_strrpos(PHP 5, PHP 7) iconv_strrpos — Finds the last occurrence of a needle within a haystack 설명
int iconv_strrpos
( string
$haystack
, string $needle
[, string $charset = ini_get("iconv.internal_encoding")
] )
Finds the last occurrence of a
In contrast to strrpos(), the return value of
iconv_strrpos() 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 last occurrence of
If 참고
|