Home
last modified time | relevance | path

Searched refs:quoted (Results 1 – 25 of 101) sorted by path

12345

/PHP-7.4/Zend/tests/
H A Dbug72918.phpt2 Bug #72918 (negative offset inside a quoted string leads to parse error)
/PHP-7.4/build/
H A Dlibtool.m4108 # metacharacters that are still active within double-quoted strings.
/PHP-7.4/ext/iconv/tests/
H A Dbug48289.phpt2 Bug #48289 (iconv_mime_encode() quoted-printable scheme is broken)
/PHP-7.4/ext/imap/tests/
H A Dimap_8bit_basic.phpt10 * Description: Convert an 8bit string to a quoted-printable string.
/PHP-7.4/ext/json/tests/
H A Dfail001.phpt13 '{unquoted_key: "keys must be quoted}',
20 '{"Extra value after close": true} "misplaced quoted value"',
57 Testing: {unquoted_key: "keys must be quoted}
92 Testing: {"Extra value after close": true} "misplaced quoted value"
/PHP-7.4/ext/pdo/
H A Dpdo_sql_parser.re75 size_t qlen; /* quoted length of value */
76 char *quoted; /* quoted value */
130 plc->quoted = "?";
286 plc->quoted = estrdup(ZSTR_VAL(buf));
291 plc->quoted = "NULL";
324 plc->quoted = Z_STRVAL_P(parameter);
345 if (plc->quoted) {
399 plc->quoted = idxbuf;
400 plc->qlen = strlen(plc->quoted);
432 plc->quoted = "?";
[all …]
H A Dphp_pdo_driver.h258 …e_func)(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen…
/PHP-7.4/ext/pdo/tests/
H A Dpdo_033.phpt20 $quoted = $db->quote($unquoted);
27 $db->query("INSERT INTO test (t) VALUES($quoted)");
/PHP-7.4/ext/pdo_dblib/
H A Ddblib_driver.c150 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in dblib_handle_quoter() argument
179 q = *quoted = emalloc(*quotedlen + 1); /* Add byte for terminal null */ in dblib_handle_quoter()
/PHP-7.4/ext/pdo_dblib/tests/
H A Dpdo_dblib_param_str_natl.phpt2 PDO_DBLIB: national character set values are quoted correctly in queries
/PHP-7.4/ext/pdo_firebird/
H A Dfirebird_driver.c244 char **quoted, size_t *quotedlen, enum pdo_param_type paramtype) in firebird_handle_quoter() argument
252 *quoted = emalloc(*quotedlen+1); in firebird_handle_quoter()
253 strcpy(*quoted, "''"); in firebird_handle_quoter()
262 *quoted = c = emalloc(*quotedlen+1); in firebird_handle_quoter()
274 strncpy(c, l, *quotedlen-(c-*quoted)-1); in firebird_handle_quoter()
275 (*quoted)[*quotedlen-1] = '\''; in firebird_handle_quoter()
276 (*quoted)[*quotedlen] = '\0'; in firebird_handle_quoter()
/PHP-7.4/ext/pdo_mysql/
H A Dmysql_driver.c306 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in mysql_handle_quoter() argument
324 *quoted = safe_emalloc(2, unquotedlen, 3 + (use_national_character_set ? 1 : 0)); in mysql_handle_quoter()
327 *quotedlen = mysql_real_escape_string_quote(H->server, *quoted + 2, unquoted, unquotedlen, '\''); in mysql_handle_quoter()
328 (*quoted)[0] = 'N'; in mysql_handle_quoter()
329 (*quoted)[1] = '\''; in mysql_handle_quoter()
333 *quotedlen = mysql_real_escape_string_quote(H->server, *quoted + 1, unquoted, unquotedlen, '\''); in mysql_handle_quoter()
334 (*quoted)[0] = '\''; in mysql_handle_quoter()
337 (*quoted)[++*quotedlen] = '\''; in mysql_handle_quoter()
338 (*quoted)[++*quotedlen] = '\0'; in mysql_handle_quoter()
339 PDO_DBG_INF_FMT("quoted=%.*s", (int)*quotedlen, *quoted); in mysql_handle_quoter()
/PHP-7.4/ext/pdo_oci/
H A Doci_driver.c361 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in oci_handle_quoter() argument
369 *quoted = emalloc(*quotedlen+1); in oci_handle_quoter()
370 strcpy(*quoted, "''"); in oci_handle_quoter()
379 *quoted = c = emalloc(*quotedlen+1); in oci_handle_quoter()
390 strncpy(c, l, *quotedlen-(c-*quoted)-1); in oci_handle_quoter()
391 (*quoted)[*quotedlen-1] = '\''; in oci_handle_quoter()
392 (*quoted)[*quotedlen] = '\0'; in oci_handle_quoter()
/PHP-7.4/ext/pdo_odbc/
H A Dodbc_driver.c263 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in odbc_handle_quoter() argument
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_driver.c321 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in pgsql_handle_quoter() argument
332 *quoted = emalloc(*quotedlen + 1); in pgsql_handle_quoter()
333 memcpy((*quoted)+1, escaped, *quotedlen-2); in pgsql_handle_quoter()
334 (*quoted)[0] = '\''; in pgsql_handle_quoter()
335 (*quoted)[*quotedlen-1] = '\''; in pgsql_handle_quoter()
336 (*quoted)[*quotedlen] = '\0'; in pgsql_handle_quoter()
340 *quoted = safe_emalloc(2, unquotedlen, 3); in pgsql_handle_quoter()
341 (*quoted)[0] = '\''; in pgsql_handle_quoter()
342 *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, unquotedlen, NULL); in pgsql_handle_quoter()
343 (*quoted)[*quotedlen + 1] = '\''; in pgsql_handle_quoter()
[all …]
/PHP-7.4/ext/pdo_sqlite/
H A Dsqlite_driver.c234 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in sqlite_handle_quoter() argument
236 *quoted = safe_emalloc(2, unquotedlen, 3); in sqlite_handle_quoter()
237 sqlite3_snprintf(2*unquotedlen + 3, *quoted, "'%q'", unquoted); in sqlite_handle_quoter()
238 *quotedlen = strlen(*quoted); in sqlite_handle_quoter()
/PHP-7.4/ext/standard/tests/array/
H A Darray_combine_variation3.phpt29 This is a double quoted string
39 // heredoc with quoted strings and numeric values
42 'single quoted string'
43 "double quoted string"
159 This is a double quoted string"]=>
163 This is a double quoted string"
173 double quoted string. with different white spaces"
175 'single quoted string'
176 "double quoted string"
180 'single quoted string'
[all …]
H A Darray_flip_variation3.phpt37 // single quoted string value
48 // double quoted string value
H A Darray_intersect_assoc_variation3.phpt31 This is a double quoted string
38 heredoc\ndouble quoted string. with\vdifferent\fwhite\vspaces
41 // heredoc with quoted strings and numeric values
44 'single quoted string'
45 "double quoted string"
56 …y("a\v\f","aaaa\r","b","b\tbbb","c","\[\]\!\@\#\$\%\^\&\*\(\)\{\}"), // with double quoted strings
57 …y('a\v\f','aaaa\r','b','b\tbbb','c','\[\]\!\@\#\$\%\^\&\*\(\)\{\}'), // with single quoted strings
156 double quoted string. with different white spaces"
164 double quoted string. with different white spaces"
H A Darray_intersect_assoc_variation4.phpt31 This is a double quoted string
38 heredoc\ndouble quoted string. with\vdifferent\fwhite\vspaces
41 // heredoc with quoted strings and numeric values
44 'single quoted string'
45 "double quoted string"
65 …\f","aaaa\r","b","b\tbbb","c","\[\]\!\@\#\$\%\^\&\*\(\)\{\}"), // array with double quoted strings
66 …\f','aaaa\r','b','b\tbbb','c','\[\]\!\@\#\$\%\^\&\*\(\)\{\}'), // array with single quoted strings
163 double quoted string. with different white spaces"
171 double quoted string. with different white spaces"
H A Darray_intersect_variation3.phpt30 This is a double quoted string
37 heredoc\ndouble quoted string. with\vdifferent\fwhite\vspaces
40 // heredoc with quoted strings and numeric values
43 'single quoted string'
44 "double quoted string"
181 double quoted string. with different white spaces"
184 'single quoted string'
185 "double quoted string"
195 double quoted string. with different white spaces"
198 'single quoted string'
[all …]
H A Darray_intersect_variation4.phpt30 This is a double quoted string
37 heredoc\ndouble quoted string. with\vdifferent\fwhite\vspaces
40 // heredoc with quoted strings and numeric values
43 'single quoted string'
44 "double quoted string"
189 'single quoted string'
190 "double quoted string"
198 double quoted string. with different white spaces"
203 'single quoted string'
204 "double quoted string"
[all …]
H A Darray_key_exists_variation6.phpt23 'empty single quoted string' => '',
24 "empty double quoted string" => "",
64 -- Key in $search array is : empty single quoted string --
72 -- Key in $search array is : empty double quoted string --
H A Darray_merge_recursive_variation3.phpt30 This is a double quoted string
37 heredoc\ndouble quoted string. with\vdifferent\fwhite\vspaces
40 // heredoc with quoted strings and numeric values
43 'single quoted string'
44 "double quoted string"
55 array("a\v\f", "aaaa\r", "b", "\[\]\!\@\#\$\%\^\&\*\(\)\{\}"), // with double quoted strings
56 array('a\v\f', 'aaaa\r', 'b', '\[\]\!\@\#\$\%\^\&\*\(\)\{\}'), // with single quoted strings
326 This is a double quoted string"
332 double quoted string. with different white spaces"
343 This is a double quoted string"
[all …]
H A Darray_pad_variation6.phpt31 This is a double quoted string
41 // heredoc with quoted strings and numeric values
44 'single quoted string'
45 "double quoted string"
309 This is a double quoted string"
315 double quoted string. with different white spaces"
318 'single quoted string'
319 "double quoted string"
339 This is a double quoted string"
348 'single quoted string'
[all …]

Completed in 85 milliseconds

12345