PHP Function List
quote doesn't exist. Closest matches:
- quoted_printable_encode
- quoted_printable_decode
- preg_quote
- magic_quotes_runtime
- get_magic_quotes_gpc
- get_magic_quotes_runtime
- set_magic_quotes_runtime
- quotemeta
- usort
- qdom_tree
- octdec
- uksort
- uasort
- putenv
- dotnet
- require
- domtext
- sqlite3
- haruoutline
- harufont
Site Search Results
-
preg_quote() 需要参数str并向其中 每个正则表达式语法中的字符前增加一个反斜线. 这通常用于你有一些运行时字符串 需要作为正则表达式进行匹配的时候.
-
Magic Quotes is a process that automagically escapes incoming data to the PHP script. It's preferred to code with magic quotes off and to instead escape the data at runtime, as needed.
-
Returns a string with backslashes before characters that need to be quoted in database queries etc. These characters are single quote ('), double quote ("), backslash (\) and NUL (the NULL byte).
-
preg_quote() takes str and puts a backslash in front of every character that is part of the regular expression syntax. This is useful if you have a run-time string that you need to match in some text and the string may contain special regex characters.
-
PDO::quote() places quotes around the input string (if required) and escapes special characters within the input string, using a quoting style appropriate to the underlying driver. If you are using this function to build SQL statements, you are ...
-
To specify a literal single quote, escape it with a backslash (\). To specify a literal backslash, double it (\\). All other instances of backslash will be treated as a literal backslash: this means that the other escape sequences you might ...
-
a backslash ( \ ), a single-quote ( ' ), a double-quote ( " ) and a null character ( \0 ) Let's have two simple scripts: Script A: <?php echo $_POST ['example']; ?> Script B: <?php echo stripslashes ($_POST ['example']);
-
addslashes() - Quote string with slashes stripslashes() - Un-quotes a quoted string get_magic_quotes_runtime() - Gets the current active configuration setting of magic_quotes_runtime ini_get() - Gets the value of a configuration option
-
mysql_real_escape_string - ManualThe following function can be used to escape singe and double quotes in a string with out the risk of escaping quotes twice.This function escapes a quote, only if it hasn't already been escaped. <?php
-
#define ENT_QUOTES (ENT_HTML_QUOTE_DOUBLE | ENT_HTML_QUOTE_SINGLE) #define ENT_NOQUOTES ENT_HTML_QUOTE_NONE #define ENT_IGNORE ENT_HTML_IGNORE_ERRORS #define ENT_SUBSTITUTE ENT_HTML_SUBSTITUTE_ERRORS

Other forms of search
To search the string "quote" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
