update : 2015.11.03
php.shukuma.com검색:
|
eregi_replace(PHP 4, PHP 5) eregi_replace — Replace regular expression case insensitive 설명
string eregi_replace
( string
$pattern
, string $replacement
, string $string
)This function is identical to ereg_replace() except that this ignores case distinction when matching alphabetic characters. Warning
이 함수는 PHP 5.3.0부터 배제됩니다. 이 기능에 의존하지 않기를 권합니다. 인수
반환값
The modified string is returned. If no matches are found in
예제
Example #1 Highlight search results
<?php 주의
Tip
eregi_replace() is deprecated as of PHP 5.3.0. preg_replace()
with the i ( 참고
|