Home
last modified time | relevance | path

Searched refs:quote (Results 51 – 75 of 85) sorted by relevance

1234

/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_interface.phpt30 'quote' => true,
H A Dbug_41125.phpt2 Bug #41125 (PDO mysql + quote() + prepare() can result in segfault)
H A Dbug54929.phpt2 Bug #54929 (Parse error with single quote in sql comment (pdo-mysql))
H A Dbug41125.phpt2 Bug #41125 (PDO mysql + quote() + prepare() can result in seg fault)
18 $sql = "SELECT 1 FROM DUAL WHERE 'o''riley' LIKE " . $db->quote('%' . $search . '%');
H A Dpdo_mysql_prepare_native.phpt192 $db->quote('%ro%'));
198 $db->quote('%go%'));
317 $db->quote('%ro%'));
323 $db->quote('%ro%'));
H A Dpdo_mysql_prepare_emulated.phpt185 $db->quote('%ro%'));
192 $db->quote('%ro%'));
294 $db->quote('%ro%'));
301 $db->quote('%ro%'));
H A Dpdo_mysql_exec_load_data.phpt83 …ILE %s INTO TABLE test FIELDS TERMINATED BY ';' LINES TERMINATED BY '\n'", $db->quote($filename));
/PHP-8.0/ext/pdo_pgsql/tests/
H A Dbug71885_2.phpt24 $jsonb = $db->quote(json_encode(['a' => 1]));
H A Dbug62479.phpt61 // Create a user with a space and single quote
/PHP-8.0/ext/standard/tests/array/
H A Darray_rand_variation4.phpt37 "\t" => "tab as key", "'" => 'single quote as key',
38 '"' => 'double quote as key', "\0" => "null char as key")
/PHP-8.0/ext/standard/tests/strings/
H A Ducwords_variation4.phpt6 * test ucwords() with different string prepared using double quote
23 // using quote chars in sentence
H A Dget_html_translation_table_basic3.phpt9 // $table as HTML_SEPCIALCHARS and different quote style
H A Dstripslashes_basic.phpt12 $str_array = array( "How's everybody", // string containing single quote
H A Dchunk_split_variation7.phpt21 "It's string with quotes", //string containing single quote
H A Dhtml_entity_decode3.phpt17 "'", //single quote, depends on flags
H A Dstripslashes_variation2.phpt2 Test stripslashes() function : usage variations - un-quote strings quoted with addslashes()
/PHP-8.0/ext/standard/tests/general_functions/
H A Dparse_ini_basic.phpt278 string(69) "c:\some windows\path\test\new\r\quote " here\single ' quote\some more"
/PHP-8.0/ext/sqlite3/tests/
H A Dsqlite3_09_blob_bound_param.phpt30 $results = $db->query("SELECT id, quote(data) AS data FROM test ORDER BY id ASC");
/PHP-8.0/ext/json/tests/
H A Dfail001.phpt30 "['single quote']"
158 Testing: ['single quote']
/PHP-8.0/sapi/fpm/fpm/
H A Dzlog.h99 void zlog_stream_set_msg_quoting(struct zlog_stream *stream, zlog_bool quote);
H A Dzlog.c579 void zlog_stream_set_msg_quoting(struct zlog_stream *stream, zlog_bool quote) /* {{{ */ in zlog_stream_set_msg_quoting() argument
581 stream->msg_quote = quote && stream->decorate ? 1 : 0; in zlog_stream_set_msg_quoting()
/PHP-8.0/docs/
H A Dmailinglist-rules.md64 3. Do not top post. Place your answer underneath anyone you wish to quote
68 create an entirely new thread copying anything you wish to quote into the
/PHP-8.0/ext/mbstring/
H A Dmbstring.c570 … *php_mb_rfc1867_substring_conf(const zend_encoding *encoding, char *start, size_t len, char quote) in php_mb_rfc1867_substring_conf() argument
576 for (i = 0; i < len && start[i] != quote; ++i) { in php_mb_rfc1867_substring_conf()
577 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { in php_mb_rfc1867_substring_conf()
595 char *pos = *line, quote; in php_mb_rfc1867_getword() local
599 if ((quote = *pos) == '"' || quote == '\'') { in php_mb_rfc1867_getword()
601 while (*pos && *pos != quote) { in php_mb_rfc1867_getword()
602 if (*pos == '\\' && pos[1] && pos[1] == quote) { in php_mb_rfc1867_getword()
644 char quote = *str; in php_mb_rfc1867_getword_conf() local
647 return php_mb_rfc1867_substring_conf(encoding, str, strlen(str), quote); in php_mb_rfc1867_getword_conf()
/PHP-8.0/Zend/
H A Dzend_ast.c977 static ZEND_COLD void zend_ast_export_qstr(smart_str *str, char quote, zend_string *s) in zend_ast_export_qstr() argument
1014 if (c == quote || c == '$' || c == '\\') { in zend_ast_export_qstr()
1136 static ZEND_COLD void zend_ast_export_encaps_list(smart_str *str, char quote, zend_ast_list *list, … in zend_ast_export_encaps_list() argument
1147 zend_ast_export_qstr(str, quote, Z_STR_P(zv)); in zend_ast_export_encaps_list()
/PHP-8.0/ext/pdo/
H A Dpdo_sql_parser.re206 /* let's quote all the values */

Completed in 116 milliseconds

1234