Home
last modified time | relevance | path

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

1234

/PHP-8.3/ext/standard/tests/strings/
H A Dconvert_uudecode_basic.phpt11 //double quoted strings
19 //single quoted strings
H A Dnl2br_variation2.phpt2 Test nl2br() function : usage variations - single quoted strings for 'str' argument
5 /* Test nl2br() function by passing single quoted strings containing various
H A Dbin2hex_basic.phpt11 //double quoted strings
16 //single quoted strings
H A Dnl2br_variation1.phpt2 Test nl2br() function : usage variations - double quoted strings for 'str' argument
5 /* Test nl2br() function by passing double quoted strings containing various
H A Dgh11982.phpt2 GH-11982 (str_getcsv returns null byte for unterminated quoted string)
H A Dhtmlspecialchars_decode_variation5.phpt2 Test htmlspecialchars_decode() function : usage variations - double quoted strings for 'string' arg…
6 * testing htmlspecialchars_decode() for various double quoted strings as argument for $string
10 //double quoted strings
H A Dstrip_tags_variation10.phpt2 Test strip_tags() function : usage variations - single quoted strings
6 * testing functionality of strip_tags() by giving single quoted strings as values for $str argument
H A Dstrip_tags_variation9.phpt2 Test strip_tags() function : usage variations - double quoted strings
6 * testing functionality of strip_tags() by giving double quoted strings as values for $str argument
H A Dstrtr_variation2.phpt23 //double quoted strings
28 //single quoted strings
H A Dconvert_uuencode_basic.phpt11 //double quoted strings
19 //single quoted strings
H A Dhtmlspecialchars_decode_variation4.phpt2 Test htmlspecialchars_decode() function : usage variations - single quoted strings for 'string' arg…
6 * Testing htmlspecialchars_decode() with various single quoted strings as argument for $string
11 //single quoted strings
H A Dstrtr_variation3.phpt24 //double quoted strings
31 //single quoted strings
/PHP-8.3/ext/standard/tests/array/
H A Dusort_variation3.phpt45 'key' => 5, //single quoted key
46 "two" => 4, //double quoted key
H A Darray_flip_variation3.phpt32 // single quoted string value
43 // double quoted string value
H A Duasort_variation3.phpt52 'key' => 5, //single quoted key
53 "two" => 4, //double quoted key
H A Dusort_variation5.phpt41 // Single quoted strings
52 // Double quoted strings
H A Darray_rand_variation3.phpt20 // array with single quoted strings
23 // array with double quoted strings
/PHP-8.3/ext/json/tests/
H A Dfail001.phpt9 '{unquoted_key: "keys must be quoted}',
16 '{"Extra value after close": true} "misplaced quoted value"',
53 Testing: {unquoted_key: "keys must be quoted}
88 Testing: {"Extra value after close": true} "misplaced quoted value"
/PHP-8.3/ext/pdo_mysql/
H A Dmysql_driver.c312 char *quoted; in mysql_handle_quoter() local
329 quoted = safe_emalloc(2, ZSTR_LEN(unquoted), 3 + (use_national_character_set ? 1 : 0)); in mysql_handle_quoter()
332 …quotedlen = mysql_real_escape_string_quote(H->server, quoted + 2, ZSTR_VAL(unquoted), ZSTR_LEN(unq… in mysql_handle_quoter()
333 quoted[0] = 'N'; in mysql_handle_quoter()
334 quoted[1] = '\''; in mysql_handle_quoter()
339 quoted[0] = '\''; in mysql_handle_quoter()
342 quoted[++quotedlen] = '\''; in mysql_handle_quoter()
343 quoted[++quotedlen] = '\0'; in mysql_handle_quoter()
344 PDO_DBG_INF_FMT("quoted=%.*s", (int)quotedlen, quoted); in mysql_handle_quoter()
346 quoted_str = zend_string_init(quoted, quotedlen, 0); in mysql_handle_quoter()
[all …]
/PHP-8.3/Zend/tests/
H A Dbug70430.phpt10 Parse error: syntax error, unexpected double-quoted string "*** Testing function() : ***\n", expec…
H A Dbug72918.phpt2 Bug #72918 (negative offset inside a quoted string leads to parse error)
/PHP-8.3/ext/pdo_dblib/tests/
H A Dpdo_dblib_param_str_natl.phpt2 PDO_DBLIB: national character set values are quoted correctly in queries
/PHP-8.3/ext/iconv/tests/
H A Dbug48289.phpt2 Bug #48289 (iconv_mime_encode() quoted-printable scheme is broken)
/PHP-8.3/ext/pdo_pgsql/
H A Dpgsql_driver.c351 char *quoted; in pgsql_handle_quoter() local
362 quoted = emalloc(quotedlen + 1); in pgsql_handle_quoter()
363 memcpy(quoted+1, escaped, quotedlen-2); in pgsql_handle_quoter()
364 quoted[0] = '\''; in pgsql_handle_quoter()
365 quoted[quotedlen-1] = '\''; in pgsql_handle_quoter()
366 quoted[quotedlen] = '\0'; in pgsql_handle_quoter()
370 quoted = safe_emalloc(2, ZSTR_LEN(unquoted), 3); in pgsql_handle_quoter()
371 quoted[0] = '\''; in pgsql_handle_quoter()
373 quoted[quotedlen + 1] = '\''; in pgsql_handle_quoter()
374 quoted[quotedlen + 2] = '\0'; in pgsql_handle_quoter()
[all …]
/PHP-8.3/sapi/cli/tests/
H A Dgh14189.phpt2 GH-14189 (PHP Interactive shell input state incorrectly handles quoted heredoc literals.)

Completed in 39 milliseconds

1234