update : 2015.11.03
php.shukuma.com검색:
|
strripos(PHP 5) strripos — 문자열에서 대소문자 구분 없이 문자열의 마지막 위치를 찾습니다 설명
int strripos
( string
$haystack
, string $needle
[, int $offset
] )문자열에서 대소문자 구분 없는 문자열의 마지막 위치를 찾습니다. strrpos()와는 달리, strripos()는 대소문자를 구분하지 않습니다. 인수
반환값
예제
Example #1 간단한 strripos() 예제
<?php 위 예제의 출력: Congratulations! We found the last (aB) in (ababcd) at position (2) |