update : 2015.11.03
php.shukuma.com검색:
|
sql_regcase(PHP 4, PHP 5) sql_regcase — Make 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부터 배제됩니다. 이 기능에 의존하지 않기를 권합니다. 인수
반환값
Returns a valid regular expression which will match
예제
Example #1 sql_regcase() example
<?php 위 예제의 출력: [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. |