Home
last modified time | relevance | path

Searched refs:unquoted (Results 1 – 14 of 14) sorted by relevance

/PHP-7.2/ext/pdo/tests/
H A Dpdo_033.phpt18 $unquoted = ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrst…
20 $quoted = $db->quote($unquoted);
22 $len = strlen($unquoted);
/PHP-7.2/ext/standard/tests/general_functions/
H A Dbug70157.phpt2 parse_ini_string() crashes on values starting with number or unquoted strings
/PHP-7.2/ext/pdo_dblib/
H A Ddblib_driver.c152 static int dblib_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quo… in dblib_handle_quoter() argument
173 if (unquoted[i] == '\'') ++*quotedlen; in dblib_handle_quoter()
188 if (unquoted[i] == '\'') { in dblib_handle_quoter()
192 *q++ = unquoted[i]; in dblib_handle_quoter()
/PHP-7.2/ext/pdo_mysql/
H A Dmysql_driver.c300 static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quo… in mysql_handle_quoter() argument
317 PDO_DBG_INF_FMT("unquoted=%.*s", (int)unquotedlen, unquoted); in mysql_handle_quoter()
321 *quotedlen = mysql_real_escape_string(H->server, *quoted + 2, unquoted, unquotedlen); in mysql_handle_quoter()
327 *quotedlen = mysql_real_escape_string(H->server, *quoted + 1, unquoted, unquotedlen); in mysql_handle_quoter()
/PHP-7.2/ext/pdo_firebird/
H A Dfirebird_driver.c234 static int firebird_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, /* {{{ … in firebird_handle_quoter() argument
250 for (co = unquoted; (co = strchr(co,'\'')); qcount++, co++); in firebird_handle_quoter()
257 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
/PHP-7.2/ext/pdo_oci/tests/
H A Dpdo_oci_quote1.phpt19 // The intent is that the fetched data be identical to the unquoted string.
/PHP-7.2/ext/pdo_oci/
H A Doci_driver.c363 static int oci_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quote… in oci_handle_quoter() argument
377 for (cu = unquoted; (cu = strchr(cu,'\'')); qcount++, cu++) in oci_handle_quoter()
385 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in oci_handle_quoter()
/PHP-7.2/ext/pdo_sqlite/
H A Dsqlite_driver.c237 static int sqlite_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **qu… in sqlite_handle_quoter() argument
240 sqlite3_snprintf(2*unquotedlen + 3, *quoted, "'%q'", unquoted); in sqlite_handle_quoter()
/PHP-7.2/ext/pdo_pgsql/
H A Dpgsql_driver.c331 static int pgsql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quo… in pgsql_handle_quoter() argument
340 escaped = PQescapeByteaConn(H->server, (unsigned char *)unquoted, unquotedlen, &tmp_len); in pgsql_handle_quoter()
352 *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, unquotedlen, NULL); in pgsql_handle_quoter()
/PHP-7.2/ext/pdo/
H A Dphp_pdo_driver.h260 typedef int (*pdo_dbh_quote_func)(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **…
/PHP-7.2/ext/pdo_odbc/
H A Dodbc_driver.c264 static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quot… in odbc_handle_quoter() argument
/PHP-7.2/
H A DINSTALL1428 ; any text on a line after an unquoted semicolon (;) is ignored
/PHP-7.2/win32/
H A Dinstall.txt1284 ; any text on a line after an unquoted semicolon (;) is ignored
/PHP-7.2/ext/pcre/pcrelib/doc/
H A Dpcre.txt9934 string quoted = RE::QuoteMeta(unquoted);

Completed in 58 milliseconds