(PHP 4, PHP 5, PHP 7)
Quote meta characters
string quotemeta ( string $str )
Returns a version of str with a backslash character (\) before every character that is among these:
. \ + * ? [ ^ ] ( $ )
Parameters:
str
The input string.
Returns:
Returns the string with meta characters quoted, or FALSE
if an empty string is given as str
.
Notes:
This function is binary-safe.
See also:
nl2br() -
ereg() -
Please login to continue.