Home
last modified time | relevance | path

Searched refs:quoted (Results 76 – 97 of 97) sorted by relevance

1234

/PHP-8.0/ext/pdo_pgsql/
H A Dpgsql_driver.c352 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in pgsql_handle_quoter() argument
363 *quoted = emalloc(*quotedlen + 1); in pgsql_handle_quoter()
364 memcpy((*quoted)+1, escaped, *quotedlen-2); in pgsql_handle_quoter()
365 (*quoted)[0] = '\''; in pgsql_handle_quoter()
366 (*quoted)[*quotedlen-1] = '\''; in pgsql_handle_quoter()
367 (*quoted)[*quotedlen] = '\0'; in pgsql_handle_quoter()
371 *quoted = safe_emalloc(2, unquotedlen, 3); in pgsql_handle_quoter()
372 (*quoted)[0] = '\''; in pgsql_handle_quoter()
373 *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, unquotedlen, NULL); in pgsql_handle_quoter()
374 (*quoted)[*quotedlen + 1] = '\''; in pgsql_handle_quoter()
[all …]
/PHP-8.0/ext/standard/tests/strings/
H A Ducfirst.phpt18 "abcd", // double quoted string
19 'xyz', // single quoted string
H A Dchunk_split_variation9.phpt2 Test chunk_split() function : usage variations - different double quoted strings for 'ending' argum…
6 * passing different double quoted strings for 'ending' argument to chunk_split()
H A Dlcfirst.phpt18 "abcd", // double quoted string
19 'xyz', // single quoted string
H A Dparse_str_basic3.phpt41 $s1 = "str=A+string+with+%22quoted%22+strings";
152 string(30) "A string with "quoted" strings"
H A Dstripslashes_basic.phpt6 * Testing stripslashes() with quoted strings
H A Dcrc32_variation2.phpt2 Test crc32() function : usage variations - single quoted strings
H A Dcrc32_variation3.phpt2 Test crc32() function : usage variations - double quoted strings
H A Ducwords_variation3.phpt2 Test ucwords() function : usage variations - single quoted string
H A Ducwords_variation4.phpt2 Test ucwords() function : usage variations - double quoted string
H A Dstripslashes_variation2.phpt2 Test stripslashes() function : usage variations - un-quote strings quoted with addslashes()
/PHP-8.0/ext/pdo_oci/
H A Doci_driver.c359 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in oci_handle_quoter() argument
367 *quoted = emalloc(*quotedlen+1); in oci_handle_quoter()
368 strcpy(*quoted, "''"); in oci_handle_quoter()
377 *quoted = c = emalloc(*quotedlen+1); in oci_handle_quoter()
388 strncpy(c, l, *quotedlen-(c-*quoted)-1); in oci_handle_quoter()
389 (*quoted)[*quotedlen-1] = '\''; in oci_handle_quoter()
390 (*quoted)[*quotedlen] = '\0'; in oci_handle_quoter()
/PHP-8.0/ext/pdo_firebird/
H A Dfirebird_driver.c664 char **quoted, size_t *quotedlen, enum pdo_param_type paramtype) in firebird_handle_quoter() argument
672 *quoted = emalloc(*quotedlen+1); in firebird_handle_quoter()
673 strcpy(*quoted, "''"); in firebird_handle_quoter()
682 *quoted = c = emalloc(*quotedlen+1); in firebird_handle_quoter()
694 strncpy(c, l, *quotedlen-(c-*quoted)-1); in firebird_handle_quoter()
695 (*quoted)[*quotedlen-1] = '\''; in firebird_handle_quoter()
696 (*quoted)[*quotedlen] = '\0'; in firebird_handle_quoter()
/PHP-8.0/ext/standard/tests/array/
H A Dshuffle_variation3.phpt26 // array with single quoted and double quoted strings
H A Dshuffle_variation4.phpt26 // array with single and double quoted strings
/PHP-8.0/tests/strings/
H A D001.phpt134 $quoted = quotemeta($raw);
135 if ($quoted == "a\\.\\\\\\+\\*\\?\\[\\^\\]b\\\$c") {
/PHP-8.0/ext/pdo_sqlite/
H A Dsqlite_driver.c233 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in sqlite_handle_quoter() argument
238 *quoted = safe_emalloc(2, unquotedlen, 3); in sqlite_handle_quoter()
239 sqlite3_snprintf(2*unquotedlen + 3, *quoted, "'%q'", unquoted); in sqlite_handle_quoter()
240 *quotedlen = strlen(*quoted); in sqlite_handle_quoter()
/PHP-8.0/ext/pdo_dblib/
H A Ddblib_driver.c148 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in dblib_handle_quoter() argument
177 q = *quoted = emalloc(*quotedlen + 1); /* Add byte for terminal null */ in dblib_handle_quoter()
/PHP-8.0/ext/pdo/
H A Dphp_pdo_driver.h256 …e_func)(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen…
/PHP-8.0/
H A Dphp.ini-development45 ; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
H A Dphp.ini-production45 ; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
/PHP-8.0/build/
H A Dlibtool.m4108 # metacharacters that are still active within double-quoted strings.

Completed in 111 milliseconds

1234