Home
last modified time | relevance | path

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

12345

/PHP-7.0/ext/standard/tests/strings/
H A Dconvert_uudecode_basic.phpt16 //double quoted strings
24 //single quoted strings
H A Dnl2br_variation2.phpt2 Test nl2br() function : usage variations - single quoted strings for 'str' argument
10 /* Test nl2br() function by passing single quoted strings containing various
H A Dbin2hex_basic.phpt16 //double quoted strings
21 //single quoted strings
H A Dstrripos_variation2.phpt2 Test strripos() function : usage variations - single quoted strings for 'haystack' & 'needle' argum…
10 /* Test strripos() function by passing single quoted strings to 'haystack' & 'needle' arguments */
12 echo "*** Testing strripos() function: with single quoted strings ***\n";
79 *** Testing strripos() function: with single quoted 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 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 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 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
/PHP-7.0/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.0/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
/PHP-7.0/ext/pdo_firebird/
H A Dfirebird_driver.c282 char **quoted, size_t *quotedlen, enum pdo_param_type paramtype) in firebird_handle_quoter() argument
290 *quoted = emalloc(*quotedlen+1); in firebird_handle_quoter()
291 strcpy(*quoted, "''"); in firebird_handle_quoter()
300 *quoted = c = emalloc(*quotedlen+1); in firebird_handle_quoter()
312 strncpy(c, l, *quotedlen-(c-*quoted)-1); in firebird_handle_quoter()
313 (*quoted)[*quotedlen-1] = '\''; in firebird_handle_quoter()
314 (*quoted)[*quotedlen] = '\0'; in firebird_handle_quoter()
/PHP-7.0/ext/iconv/tests/
H A Dbug48289.phpt2 Bug #48289 (iconv_mime_encode() quoted-printable scheme is broken)
/PHP-7.0/ext/pdo_mysql/
H A Dmysql_driver.c300 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in mysql_handle_quoter() argument
306 *quoted = safe_emalloc(2, unquotedlen, 3); in mysql_handle_quoter()
307 *quotedlen = mysql_real_escape_string(H->server, *quoted + 1, unquoted, unquotedlen); in mysql_handle_quoter()
308 (*quoted)[0] =(*quoted)[++*quotedlen] = '\''; in mysql_handle_quoter()
309 (*quoted)[++*quotedlen] = '\0'; in mysql_handle_quoter()
310 PDO_DBG_INF_FMT("quoted=%.*s", (int)*quotedlen, *quoted); in mysql_handle_quoter()
/PHP-7.0/ext/pdo_oci/
H A Doci_driver.c369 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… 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-7.0/ext/pdo_pgsql/
H A Dpgsql_driver.c333 …_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen… in pgsql_handle_quoter() argument
344 *quoted = emalloc(*quotedlen + 1); in pgsql_handle_quoter()
345 memcpy((*quoted)+1, escaped, *quotedlen-2); in pgsql_handle_quoter()
346 (*quoted)[0] = '\''; in pgsql_handle_quoter()
347 (*quoted)[*quotedlen-1] = '\''; in pgsql_handle_quoter()
348 (*quoted)[*quotedlen] = '\0'; in pgsql_handle_quoter()
352 *quoted = safe_emalloc(2, unquotedlen, 3); in pgsql_handle_quoter()
353 (*quoted)[0] = '\''; in pgsql_handle_quoter()
354 *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, unquotedlen, NULL); in pgsql_handle_quoter()
355 (*quoted)[*quotedlen + 1] = '\''; in pgsql_handle_quoter()
[all …]

Completed in 35 milliseconds

12345