Searched refs:quote (Results 1 - 7 of 7) sorted by relevance
| /PHP_TRUNK/ext/soap/interop/ |
| H A D | client_round2_interop.php | 277 $this->dbc->quote($test_name); 288 $this->dbc->quote($test_name).",". 289 $this->dbc->quote($success).",". 290 $this->dbc->quote($error).",". 291 ($wire?$this->dbc->quote($wire):"''").")";
|
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 20694 ** the quote characters. The conversion is done in-place. If the 20695 ** input does not begin with a quote character, then this routine 20710 char quote; local 20713 quote = z[0]; 20714 switch( quote ){ 20718 case '[': quote = ']'; break; /* For MS SqlServer compatibility */ 20722 if( z[i]==quote ){ 20723 if( z[i+1]==quote ){ 20724 z[j++] = quote; 112371 char quote; /* Quote character (if any ) */ local [all...] |
| /PHP_TRUNK/win32/build/ |
| H A D | confutils.js | 1820 function AC_DEFINE(name, value, comment, quote)
1822 if (quote == null) {
1823 quote = true;
1825 if (quote && typeof(value) == "string") {
|
| /PHP_TRUNK/ext/mbstring/ |
| H A D | mbstring.c | 1066 static char *php_mb_rfc1867_substring_conf(const zend_encoding *encoding, char *start, int len, char quote TSRMLS_DC) 1072 for (i = 0; i < len && start[i] != quote; ++i) { 1073 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { 1091 char *pos = *line, quote; local 1095 if ((quote = *pos) == '"' || quote == '\'') { 1097 while (*pos && *pos != quote) { 1098 if (*pos == '\\' && pos[1] && pos[1] == quote) { 1140 char quote local [all...] |
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_dbh.c | 1158 /* {{{ proto string PDO::quote(string string [, int paramtype]) 1160 static PHP_METHOD(PDO, quote) 1278 PHP_ME(PDO, quote, arginfo_pdo_quote, ZEND_ACC_PUBLIC)
|
| /PHP_TRUNK/main/ |
| H A D | rfc1867.c | 478 char *pos = *line, quote; local 482 if ((quote = *pos) == '"' || quote == '\'') { 484 while (*pos && *pos != quote) { 485 if (*pos == '\\' && pos[1] && pos[1] == quote) { 512 static char *substring_conf(char *start, int len, char quote) argument 518 for (i = 0; i < len && start[i] != quote; ++i) { 519 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { 541 char quote local [all...] |
| /PHP_TRUNK/Zend/ |
| H A D | zend_language_scanner.l | 2026 * rule, which continued in ST_IN_SCRIPTING state after the quote */
|
Completed in 131 milliseconds