update : 2015.11.03
php.shukuma.com검색:
|
grapheme_stristr(PHP 5 >= 5.3.0, PECL intl >= 1.0.0) grapheme_stristr — Returns part of haystack string from the first occurrence of case-insensitive needle to the end of haystack. 설명절차식 형식
string grapheme_stristr
( string
$haystack
, string $needle
[, bool $before_needle = false
] )Returns part of haystack string starting from and including the first occurrence of case-insensitive needle to the end of haystack. 인수
반환값Returns the portion of $haystack, or FALSE if $needle is not found. 예제Example #1 grapheme_stristr() example
<?php 위 예제의 출력: o%CC%88a%CC%8A 참고
|