Home
last modified time | relevance | path

Searched refs:quoted (Results 1 – 25 of 118) sorted by path

12345

/PHP-5.5/
H A DNEWS1593 . Fixed bug #65483 (quoted-printable encode stream filter incorrectly encoding
1881 . Fixed bug #64166 (quoted-printable-encode stream filter incorrectly
4126 . Fixed bug #50363 (Invalid parsing in convert.quoted-printable-decode
5177 - Fixed bug #48289 (iconv_mime_encode() quoted-printable scheme is broken).
5729 . Improved syntax highlighting and consistency for variables in double-quoted
/PHP-5.5/Zend/
H A DZEND_CHANGES1112 * Full variable reference within quoted strings:
1165 reference within quoted strings feature added in the Zend
/PHP-5.5/build/
H A Dlibtool.m4108 # metacharacters that are still active within double-quoted strings.
/PHP-5.5/ext/iconv/tests/
H A Dbug48289.phpt2 Bug #48289 (iconv_mime_encode() quoted-printable scheme is broken)
/PHP-5.5/ext/imap/tests/
H A Dimap_8bit_basic.phpt10 * Description: Convert an 8bit string to a quoted-printable string.
/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/mbstring/oniguruma/
H A DHISTORY1527 should match and convert double quoted string data.
/PHP-5.5/ext/pcre/pcrelib/
H A DChangeLog1707 31. If \k was not followed by a braced, angle-bracketed, or quoted name, PCRE
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt2474 57 \g is not followed by a braced, angle-bracketed, or quoted
2489 69 \k is not followed by a braced, angle-bracketed, or quoted name
8954 pcretest that uses the date example quoted above:
9887 string quoted = RE::QuoteMeta(unquoted);
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput1546 # quoted strings
879 ) # "special" comment or quoted string
H A Dtestinput14172 # quoted strings
H A Dtestinput1790 # quoted strings
H A Dtestinput81030 # quoted strings
1363 ) # "special" comment or quoted string
H A Dtestoutput11020 # quoted strings
1362 ) # "special" comment or quoted string
H A Dtestoutput14239 # quoted strings
H A Dtestoutput17106 # quoted strings
H A Dtestoutput28114 Failed: \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number…
9138 Failed: \k is not followed by a braced, angle-bracketed, or quoted name at offset 1
9141 Failed: \k is not followed by a braced, angle-bracketed, or quoted name at offset 1
9189 Failed: \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number…
14101 Failed: \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number…
14104 Failed: \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number…
H A Dtestoutput81875 # quoted strings
2225 ) # "special" comment or quoted string
/PHP-5.5/ext/pdo/
H A Dpdo_sql_parser.c432 char *quoted; /* quoted value */ member
569 if (!stmt->dbh->methods->quoter(stmt->dbh, buf, len, &plc->quoted, &plc->qlen, in pdo_parse_params()
593 plc->quoted = "NULL"; in pdo_parse_params()
605 plc->quoted = estrdup(Z_STRVAL(tmp_param)); in pdo_parse_params()
612 Z_STRLEN(tmp_param), &plc->quoted, &plc->qlen, in pdo_parse_params()
624 plc->quoted = Z_STRVAL_P(param->parameter); in pdo_parse_params()
645 memcpy(newbuffer, plc->quoted, plc->qlen); in pdo_parse_params()
689 plc->quoted = idxbuf; in pdo_parse_params()
690 plc->qlen = strlen(plc->quoted); in pdo_parse_params()
723 plc->quoted = "?"; in pdo_parse_params()
[all …]
H A Dpdo_sql_parser.re73 int qlen; /* quoted length of value */
74 char *quoted; /* quoted value */
235 plc->quoted = "NULL";
247 plc->quoted = estrdup(Z_STRVAL(tmp_param));
254 Z_STRLEN(tmp_param), &plc->quoted, &plc->qlen,
266 plc->quoted = Z_STRVAL_P(param->parameter);
287 memcpy(newbuffer, plc->quoted, plc->qlen);
331 plc->quoted = idxbuf;
332 plc->qlen = strlen(plc->quoted);
365 plc->quoted = "?";
[all …]
H A Dphp_pdo_driver.h251 …uote_func)(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, e…
/PHP-5.5/ext/pdo/tests/
H A Dpdo_033.phpt19 $quoted = $db->quote($unquoted);
26 $db->query("INSERT INTO test (t) VALUES($quoted)");
/PHP-5.5/ext/pdo_dblib/
H A Ddblib_driver.c144 static int dblib_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted in dblib_handle_quoter() argument
150 *quoted = q = safe_emalloc(2, unquotedlen, 3); in dblib_handle_quoter()
/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_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()

Completed in 203 milliseconds

12345