Home
last modified time | relevance | path

Searched refs:quote (Results 1 – 25 of 76) sorted by last modified time

1234

/PHP-7.4/
H A DNEWS2647 . Fixed bug #71298 (MB_CASE_TITLE misbehaves with curled apostrophe/quote).
2692 . Fixed bug #75355 (preg_quote() does not quote # control character).
/PHP-7.4/sapi/fpm/fpm/
H A Dzlog.c579 void zlog_stream_set_msg_quoting(struct zlog_stream *stream, zlog_bool quote) /* {{{ */ in zlog_stream_set_msg_quoting() argument
581 stream->msg_quote = quote && stream->decorate ? 1 : 0; in zlog_stream_set_msg_quoting()
H A Dzlog.h99 void zlog_stream_set_msg_quoting(struct zlog_stream *stream, zlog_bool quote);
/PHP-7.4/ext/mbstring/
H A Dmbstring.c1114 … *php_mb_rfc1867_substring_conf(const zend_encoding *encoding, char *start, size_t len, char quote) in php_mb_rfc1867_substring_conf() argument
1120 for (i = 0; i < len && start[i] != quote; ++i) { in php_mb_rfc1867_substring_conf()
1121 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { in php_mb_rfc1867_substring_conf()
1139 char *pos = *line, quote; in php_mb_rfc1867_getword() local
1143 if ((quote = *pos) == '"' || quote == '\'') { in php_mb_rfc1867_getword()
1145 while (*pos && *pos != quote) { in php_mb_rfc1867_getword()
1146 if (*pos == '\\' && pos[1] && pos[1] == quote) { in php_mb_rfc1867_getword()
1188 char quote = *str; in php_mb_rfc1867_getword_conf() local
1191 return php_mb_rfc1867_substring_conf(encoding, str, strlen(str), quote); in php_mb_rfc1867_getword_conf()
/PHP-7.4/ext/mysqli/
H A Dmysqli_api.c1956 # define mysql_real_escape_string_quote(mysql, to, from, length, quote) \ argument
/PHP-7.4/ext/pdo_mysql/
H A Dmysql_driver.c301 # define mysql_real_escape_string_quote(mysql, to, from, length, quote) \ argument
/PHP-7.4/main/
H A Drfc1867.c483 char *pos = *line, quote; in php_ap_getword() local
487 if ((quote = *pos) == '"' || quote == '\'') { in php_ap_getword()
489 while (*pos && *pos != quote) { in php_ap_getword()
490 if (*pos == '\\' && pos[1] && pos[1] == quote) { in php_ap_getword()
517 static char *substring_conf(char *start, int len, char quote) in substring_conf() argument
523 for (i = 0; i < len && start[i] != quote; ++i) { in substring_conf()
524 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { in substring_conf()
546 char quote = *str; in php_ap_getword_conf() local
549 return substring_conf(str, (int)strlen(str), quote); in php_ap_getword_conf()
/PHP-7.4/build/
H A Dlibtool.m4112 # Same as above, but do not quote variable references.
467 # backslashes. This makes it impossible to quote backslashes using
548 # Copy echo and quote the copy suitably for passing to libtool from
4025 # Now quote all the things that may contain metacharacters while being
4027 # variables and quote the copies for generation of the libtool script.
4088 # Double-quote double-evaled strings.
/PHP-7.4/win32/build/
H A Dconfutils.js2679 function AC_DEFINE(name, value, comment, quote) argument
2681 if (quote == null) {
2682 quote = true;
2684 if (quote && typeof(value) == "string") {
/PHP-7.4/ext/pdo/
H A Dpdo_dbh.c1151 static PHP_METHOD(PDO, quote) in PHP_METHOD() argument
1254 PHP_ME(PDO, quote, arginfo_pdo_quote, ZEND_ACC_PUBLIC)
H A Dpdo_sql_parser.re207 /* let's quote all the values */
/PHP-7.4/Zend/
H A Dzend_ast.c941 static ZEND_COLD void zend_ast_export_qstr(smart_str *str, char quote, zend_string *s) in zend_ast_export_qstr() argument
978 if (c == quote || c == '$' || c == '\\') { in zend_ast_export_qstr()
1100 static ZEND_COLD void zend_ast_export_encaps_list(smart_str *str, char quote, zend_ast_list *list, … in zend_ast_export_encaps_list() argument
1111 zend_ast_export_qstr(str, quote, Z_STR_P(zv)); in zend_ast_export_encaps_list()
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native.phpt190 $db->quote('%ro%'));
196 $db->quote('%go%'));
315 $db->quote('%ro%'));
321 $db->quote('%ro%'));
/PHP-7.4/ext/standard/tests/strings/
H A Dhtmlspecialchars.phpt30 /* checking behavior of quote */
31 echo "\n*** Testing htmlspecialchars() on a quote...\n";
32 $str = "A 'quote' is <b>bold</b>";
319 *** Testing htmlspecialchars() on a quote...
320 string(36) "A 'quote' is &lt;b&gt;bold&lt;/b&gt;"
321 string(46) "A &#039;quote&#039; is &lt;b&gt;bold&lt;/b&gt;"
322 string(36) "A 'quote' is &lt;b&gt;bold&lt;/b&gt;"
323 string(36) "A 'quote' is &lt;b&gt;bold&lt;/b&gt;"
H A Dhtmlentities24.phpt30 /* checking behavior of quote */
31 echo "\n*** Testing htmlentites() on a quote ***\n";
32 $str = "A 'quote' is <b>bold</b>";
318 *** Testing htmlentites() on a quote ***
319 string(36) "A 'quote' is &lt;b&gt;bold&lt;/b&gt;"
320 string(46) "A &#039;quote&#039; is &lt;b&gt;bold&lt;/b&gt;"
321 string(36) "A 'quote' is &lt;b&gt;bold&lt;/b&gt;"
322 string(36) "A 'quote' is &lt;b&gt;bold&lt;/b&gt;"
H A Dstripos_variation6.phpt15 echo "-- With heredoc string containing quote & slash chars --\n";
18 "things in double quote"
19 'things in single quote'
30 -- With heredoc string containing quote & slash chars --
H A Dstripslashes_basic.phpt17 $str_array = array( "How's everybody", // string containing single quote
H A Dstripslashes_variation2.phpt2 Test stripslashes() function : usage variations - un-quote strings quoted with addslashes()
H A Dstrrchr_variation6.phpt2 Test strrchr() function : usage variations - heredoc string containing quote chars for 'haystack'
10 /* Test strrchr() function by passing heredoc string containing quote chars for haystack
16 "things" "in" "double" "quote"
17 'things' 'in' 'single' 'quote'
25 "quote",
39 'things' 'in' 'single' 'quote'"
41 string(14) "ingle' 'quote'"
42 string(6) "quote'"
44 'things' 'in' 'single' 'quote'"
H A Dstrrev_variation3.phpt32 "things in double quote"
33 'things in single quote'
/PHP-7.4/sapi/cli/tests/
H A D016.phpt27 quote';
80 php ' quote';
83 quote
H A D017.phpt27 quote';
78 quote
/PHP-7.4/ext/xsl/tests/
H A Dbug48221.phpt14 …r::transformToXml(): Cannot create XPath expression (string contains both quote and double-quotes)…
H A Dxsltprocessor_setparameter-errorquote.phpt18 …r::transformToXml(): Cannot create XPath expression (string contains both quote and double-quotes)…
/PHP-7.4/ext/tidy/tests/
H A D027.phpt18 'quote-marks' => true,

Completed in 110 milliseconds

1234