quotemeta

(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:

addslashes() -

addcslashes() -

htmlentities() -

htmlspecialchars() -

nl2br() -

stripslashes() -

stripcslashes() -

ereg() -

preg_quote() -

doc_php
2016-02-24 16:12:31
Comments
Leave a Comment

Please login to continue.