Home
last modified time | relevance | path

Searched refs:quoted (Results 51 – 75 of 113) sorted by relevance

12345

/PHP-5.3/ext/standard/tests/strings/
H A Dnl2br_variation1.phpt2 Test nl2br() function : usage variations - double quoted strings for 'str' argument
10 /* Test nl2br() function by passing double quoted strings containing various
H A Dhtmlspecialchars_decode_variation5.phpt2 Test htmlspecialchars_decode() function : usage variations - double quoted strings for 'string' arg…
11 * testing htmlspecialchars_decode() for various double quoted strings as argument for $string
15 //double quoted strings
H A Dstrip_tags_variation9.phpt2 Test strip_tags() function : usage variations - double quoted strings
13 * testing functionality of strip_tags() by giving double quoted strings as values for $str argument
H A Dstripslashes_basic.phpt6 * Description: Un-quotes a quoted string
11 * Testing stripslashes() with quoted strings
H A Dstrtr_variation2.phpt29 //double quoted strings
34 //single quoted strings
H A Dstrip_tags_variation10.phpt2 Test strip_tags() function : usage variations - single quoted strings
13 * testing functionality of strip_tags() by giving single quoted strings as values for $str argument
H A Dconvert_uuencode_basic.phpt16 //double quoted strings
24 //single quoted strings
H A Dhtmlspecialchars_decode_variation4.phpt2 Test htmlspecialchars_decode() function : usage variations - single quoted strings for 'string' arg…
11 * Testing htmlspecialchars_decode() with various single quoted strings as argument for $string
16 //single quoted strings
H A Dquoted_printable_decode_basic.phpt6 * Description: Convert a quoted-printable string to an 8 bit string
H A Dstrtr_variation3.phpt30 //double quoted strings
37 //single quoted strings
H A Dstripslashes_error.phpt6 * Description: Returns an un-quoted string
H A Daddslashes_basic.phpt7 * backslash and nul character) that need to be quoted in database queries etc.
H A Daddslashes_error.phpt6 …* Description: Returns a string with backslashes before characters that need to be quoted in datab…
H A Dquoted_printable_decode_error.phpt6 * Description: Convert a quoted-printable string to an 8 bit string
/PHP-5.3/ext/standard/tests/array/
H A Dusort_variation3.phpt50 'key' => 5, //single quoted key
51 "two" => 4, //double quoted key
H A Darray_flip_variation3.phpt37 // single quoted string value
48 // double quoted string value
H A Dusort_variation5.phpt46 // Single quoted strings
57 // Double quoted strings
H A Duasort_variation3.phpt65 'key' => 5, //single quoted key
66 "two" => 4, //double quoted key
H A Darray_rand_variation3.phpt25 // array with single quoted strings
28 // array with double quoted strings
H A Dshuffle_variation3.phpt31 // array with single quoted and double quoted strings
/PHP-5.3/ext/pdo_pgsql/
H A Dpgsql_driver.c323 *quoted = emalloc(*quotedlen + 1); in pgsql_handle_quoter()
324 memcpy((*quoted)+1, escaped, *quotedlen-2); in pgsql_handle_quoter()
325 (*quoted)[0] = '\''; in pgsql_handle_quoter()
326 (*quoted)[*quotedlen-1] = '\''; in pgsql_handle_quoter()
327 (*quoted)[*quotedlen] = '\0'; in pgsql_handle_quoter()
331 *quoted = safe_emalloc(2, unquotedlen, 3); in pgsql_handle_quoter()
332 (*quoted)[0] = '\''; in pgsql_handle_quoter()
334 *quotedlen = PQescapeString(*quoted + 1, unquoted, unquotedlen); in pgsql_handle_quoter()
336 *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, unquotedlen, NULL); in pgsql_handle_quoter()
338 (*quoted)[*quotedlen + 1] = '\''; in pgsql_handle_quoter()
[all …]
/PHP-5.3/ext/pdo_firebird/
H A Dfirebird_driver.c278 char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC) in firebird_handle_quoter() argument
286 *quoted = emalloc(*quotedlen+1); in firebird_handle_quoter()
287 strcpy(*quoted, "''"); in firebird_handle_quoter()
296 *quoted = c = emalloc(*quotedlen+1); in firebird_handle_quoter()
308 strncpy(c, l, *quotedlen-(c-*quoted)-1); in firebird_handle_quoter()
309 (*quoted)[*quotedlen-1] = '\''; in firebird_handle_quoter()
310 (*quoted)[*quotedlen] = '\0'; in firebird_handle_quoter()
/PHP-5.3/ext/pdo_oci/
H A Doci_driver.c369 static int oci_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, … in oci_handle_quoter() argument
377 *quoted = emalloc(*quotedlen+1); in oci_handle_quoter()
378 strcpy(*quoted, "''"); in oci_handle_quoter()
387 *quoted = c = emalloc(*quotedlen+1); in oci_handle_quoter()
398 strncpy(c, l, *quotedlen-(c-*quoted)-1); in oci_handle_quoter()
399 (*quoted)[*quotedlen-1] = '\''; in oci_handle_quoter()
400 (*quoted)[*quotedlen] = '\0'; in oci_handle_quoter()
/PHP-5.3/ext/pdo_mysql/
H A Dmysql_driver.c330 static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted in mysql_handle_quoter() argument
336 *quoted = safe_emalloc(2, unquotedlen, 3); in mysql_handle_quoter()
337 *quotedlen = mysql_real_escape_string(H->server, *quoted + 1, unquoted, unquotedlen); in mysql_handle_quoter()
338 (*quoted)[0] =(*quoted)[++*quotedlen] = '\''; in mysql_handle_quoter()
339 (*quoted)[++*quotedlen] = '\0'; in mysql_handle_quoter()
340 PDO_DBG_INF_FMT("quoted=%.*s", *quotedlen, *quoted); in mysql_handle_quoter()
/PHP-5.3/ext/iconv/tests/
H A Dbug48289.phpt2 Bug #48289 (iconv_mime_encode() quoted-printable scheme is broken)

Completed in 70 milliseconds

12345