Home
last modified time | relevance | path

Searched refs:quoted (Results 76 – 100 of 118) sorted by last modified time

12345

/PHP-5.5/ext/standard/tests/array/
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_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" => "",
65 -- Key in $search array is : empty single quoted string --
73 -- Key in $search array is : empty double quoted string --
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_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 …]
/PHP-5.5/ext/pdo_sqlite/
H A Dsqlite_driver.c233 …dle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, e… in sqlite_handle_quoter() argument
235 *quoted = safe_emalloc(2, unquotedlen, 3); in sqlite_handle_quoter()
236 sqlite3_snprintf(2*unquotedlen + 3, *quoted, "'%q'", unquoted); in sqlite_handle_quoter()
237 *quotedlen = strlen(*quoted); in sqlite_handle_quoter()
/PHP-5.5/ext/pdo_odbc/
H A Dodbc_driver.c264 static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted,… in odbc_handle_quoter() argument
/PHP-5.5/ext/pdo_pgsql/
H A Dpgsql_driver.c335 *quoted = emalloc(*quotedlen + 1); in pgsql_handle_quoter()
336 memcpy((*quoted)+1, escaped, *quotedlen-2); in pgsql_handle_quoter()
337 (*quoted)[0] = '\''; in pgsql_handle_quoter()
338 (*quoted)[*quotedlen-1] = '\''; in pgsql_handle_quoter()
339 (*quoted)[*quotedlen] = '\0'; in pgsql_handle_quoter()
343 *quoted = safe_emalloc(2, unquotedlen, 3); in pgsql_handle_quoter()
344 (*quoted)[0] = '\''; in pgsql_handle_quoter()
346 *quotedlen = PQescapeString(*quoted + 1, unquoted, (size_t)unquotedlen); in pgsql_handle_quoter()
348 *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, (size_t)unquotedlen, NULL); in pgsql_handle_quoter()
350 (*quoted)[*quotedlen + 1] = '\''; in pgsql_handle_quoter()
[all …]
/PHP-5.5/ext/pdo_oci/
H A Doci_driver.c371 static int oci_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, … in oci_handle_quoter() argument
379 *quoted = emalloc(*quotedlen+1); in oci_handle_quoter()
380 strcpy(*quoted, "''"); in oci_handle_quoter()
389 *quoted = c = emalloc(*quotedlen+1); in oci_handle_quoter()
400 strncpy(c, l, *quotedlen-(c-*quoted)-1); in oci_handle_quoter()
401 (*quoted)[*quotedlen-1] = '\''; in oci_handle_quoter()
402 (*quoted)[*quotedlen] = '\0'; in oci_handle_quoter()
/PHP-5.5/ext/pdo_mysql/
H A Dmysql_driver.c302 static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted in mysql_handle_quoter() argument
308 *quoted = safe_emalloc(2, unquotedlen, 3); in mysql_handle_quoter()
309 *quotedlen = mysql_real_escape_string(H->server, *quoted + 1, unquoted, unquotedlen); in mysql_handle_quoter()
310 (*quoted)[0] =(*quoted)[++*quotedlen] = '\''; in mysql_handle_quoter()
311 (*quoted)[++*quotedlen] = '\0'; in mysql_handle_quoter()
312 PDO_DBG_INF_FMT("quoted=%.*s", *quotedlen, *quoted); in mysql_handle_quoter()
/PHP-5.5/ext/pdo/tests/
H A Dpdo_033.phpt19 $quoted = $db->quote($unquoted);
26 $db->query("INSERT INTO test (t) VALUES($quoted)");
/PHP-5.5/ext/pdo_dblib/
H A Ddblib_driver.c144 static int dblib_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted in dblib_handle_quoter() argument
150 *quoted = q = safe_emalloc(2, unquotedlen, 3); in dblib_handle_quoter()
/PHP-5.5/ext/pdo_firebird/
H A Dfirebird_driver.c276 char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC) in firebird_handle_quoter() argument
284 *quoted = emalloc(*quotedlen+1); in firebird_handle_quoter()
285 strcpy(*quoted, "''"); in firebird_handle_quoter()
294 *quoted = c = emalloc(*quotedlen+1); in firebird_handle_quoter()
306 strncpy(c, l, *quotedlen-(c-*quoted)-1); in firebird_handle_quoter()
307 (*quoted)[*quotedlen-1] = '\''; in firebird_handle_quoter()
308 (*quoted)[*quotedlen] = '\0'; in firebird_handle_quoter()
/PHP-5.5/ext/pdo/
H A Dpdo_sql_parser.c432 char *quoted; /* quoted value */ member
569 if (!stmt->dbh->methods->quoter(stmt->dbh, buf, len, &plc->quoted, &plc->qlen, in pdo_parse_params()
593 plc->quoted = "NULL"; in pdo_parse_params()
605 plc->quoted = estrdup(Z_STRVAL(tmp_param)); in pdo_parse_params()
612 Z_STRLEN(tmp_param), &plc->quoted, &plc->qlen, in pdo_parse_params()
624 plc->quoted = Z_STRVAL_P(param->parameter); in pdo_parse_params()
645 memcpy(newbuffer, plc->quoted, plc->qlen); in pdo_parse_params()
689 plc->quoted = idxbuf; in pdo_parse_params()
690 plc->qlen = strlen(plc->quoted); in pdo_parse_params()
723 plc->quoted = "?"; in pdo_parse_params()
[all …]
H A Dpdo_sql_parser.re73 int qlen; /* quoted length of value */
74 char *quoted; /* quoted value */
235 plc->quoted = "NULL";
247 plc->quoted = estrdup(Z_STRVAL(tmp_param));
254 Z_STRLEN(tmp_param), &plc->quoted, &plc->qlen,
266 plc->quoted = Z_STRVAL_P(param->parameter);
287 memcpy(newbuffer, plc->quoted, plc->qlen);
331 plc->quoted = idxbuf;
332 plc->qlen = strlen(plc->quoted);
365 plc->quoted = "?";
[all …]
H A Dphp_pdo_driver.h251 …uote_func)(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, e…
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput81030 # quoted strings
1363 ) # "special" comment or quoted string
H A Dtestoutput11020 # quoted strings
1362 ) # "special" comment or quoted string
H A Dtestoutput14239 # quoted strings
H A Dtestoutput17106 # quoted strings
H A Dtestoutput28114 Failed: \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number…
9138 Failed: \k is not followed by a braced, angle-bracketed, or quoted name at offset 1
9141 Failed: \k is not followed by a braced, angle-bracketed, or quoted name at offset 1
9189 Failed: \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number…
14101 Failed: \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number…
14104 Failed: \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number…
H A Dtestoutput81875 # quoted strings
2225 ) # "special" comment or quoted string

Completed in 191 milliseconds

12345