update : 2015.11.03
php.shukuma.com

검색:
 
 
Make regular expression for case insensitive match

sql_regcase

(PHP 4, PHP 5)

sql_regcaseMake regular expression for case insensitive match

설명

string sql_regcase ( string $string )

Creates a regular expression for a case insensitive match.

Warning

이 함수는 PHP 5.3.0부터 배제됩니다. 이 기능에 의존하지 않기를 권합니다.

인수

string

The input string.

반환값

Returns a valid regular expression which will match string, ignoring case. This expression is string with each alphabetic character converted to a bracket expression; this bracket expression contains that character's uppercase and lowercase form. Other characters remain unchanged.

예제

Example #1 sql_regcase() example

<?php
echo sql_regcase("Foo - bar.");
?>

위 예제의 출력:

[Ff][Oo][Oo] - [Bb][Aa][Rr].

This can be used to achieve case insensitive pattern matching in products which support only case sensitive regular expressions.

주의

Note:

PHP 5.3.0부터 regex 확장은 배제되었습니다. PCRE 확장이 같은 기능을 합니다. 이 함수를 호출하면 E_DEPRECATED 주의가 발생합니다. PCRE로 변환하는 데 필요한 도움은 차이점 목록을 참고하십시오.