Home
last modified time | relevance | path

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

12345

/PHP-5.5/ext/standard/tests/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 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 Dstripslashes_basic.phpt6 * Description: Un-quotes a quoted string
11 * Testing stripslashes() with 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 Daddslashes_basic.phpt7 * backslash and nul character) that need to be quoted in database queries etc.
/PHP-5.5/ext/json/tests/
H A Dfail001.phpt12 '{unquoted_key: "keys must be quoted}',
19 '{"Extra value after close": true} "misplaced quoted value"',
56 Testing: {unquoted_key: "keys must be quoted}
91 Testing: {"Extra value after close": true} "misplaced quoted value"
/PHP-5.5/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-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_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_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_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/iconv/tests/
H A Dbug48289.phpt2 Bug #48289 (iconv_mime_encode() quoted-printable scheme is broken)

Completed in 39 milliseconds

12345