sql_regcaseMake regular expression for case insensitive match Warning
This function was DEPRECATED in PHP 5.3.0, and REMOVED in PHP 7.0.0. Alternatives to this function include:
Description
string sql_regcase
( string
$string
)Creates a regular expression for a case insensitive match. Parameters
Return Values
Returns a valid regular expression which will match
Examples
Example #1 sql_regcase example
<?php The above example will output: [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. |