/PHP-8.1/ext/opcache/tests/ |
H A D | blacklist.phpt | 2 Blacklist (with glob, quote and comments)
|
/PHP-8.1/ext/tidy/tests/ |
H A D | 027.phpt | 18 'quote-marks' => true,
|
/PHP-8.1/ext/pdo_pgsql/tests/ |
H A D | bug71885_2.phpt | 26 $jsonb = $db->quote(json_encode(['a' => 1]));
|
H A D | bug62479.phpt | 63 // Create a user with a space and single quote
|
/PHP-8.1/ext/standard/tests/array/ |
H A D | array_rand_variation4.phpt | 36 "\t" => "tab as key", "'" => 'single quote as key', 37 '"' => 'double quote as key', "\0" => "null char as key")
|
/PHP-8.1/ext/standard/tests/strings/ |
H A D | ucwords_variation4.phpt | 6 * test ucwords() with different string prepared using double quote 23 // using quote chars in sentence
|
H A D | get_html_translation_table_basic3.phpt | 9 // $table as HTML_SEPCIALCHARS and different quote style
|
H A D | stripslashes_basic.phpt | 12 $str_array = array( "How's everybody", // string containing single quote
|
H A D | chunk_split_variation7.phpt | 21 "It's string with quotes", //string containing single quote
|
/PHP-8.1/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_interface.phpt | 31 'quote' => true,
|
H A D | bug54929.phpt | 2 Bug #54929 (Parse error with single quote in sql comment (pdo-mysql))
|
H A D | bug_41125.phpt | 2 Bug #41125 (PDO mysql + quote() + prepare() can result in segfault)
|
H A D | bug41125.phpt | 2 Bug #41125 (PDO mysql + quote() + prepare() can result in seg fault) 19 $sql = "SELECT 1 FROM DUAL WHERE 'o''riley' LIKE " . $db->quote('%' . $search . '%');
|
H A D | pdo_mysql_local_infile_directory_denied.phpt | 48 …ILE %s INTO TABLE test FIELDS TERMINATED BY ';' LINES TERMINATED BY '\n'", $db->quote($filepath));
|
H A D | pdo_mysql_local_infile_directory_allowed.phpt | 48 …ILE %s INTO TABLE test FIELDS TERMINATED BY ';' LINES TERMINATED BY '\n'", $db->quote($filepath));
|
H A D | pdo_mysql_local_infile_overrides_local_infile_directory.phpt | 48 …ILE %s INTO TABLE test FIELDS TERMINATED BY ';' LINES TERMINATED BY '\n'", $db->quote($filepath));
|
H A D | pdo_mysql_prepare_native.phpt | 193 $db->quote('%ro%')); 199 $db->quote('%go%')); 318 $db->quote('%ro%')); 324 $db->quote('%ro%'));
|
H A D | pdo_mysql_prepare_emulated.phpt | 187 $db->quote('%ro%')); 194 $db->quote('%ro%')); 296 $db->quote('%ro%')); 303 $db->quote('%ro%'));
|
H A D | pdo_mysql_exec_load_data.phpt | 84 …ILE %s INTO TABLE test FIELDS TERMINATED BY ';' LINES TERMINATED BY '\n'", $db->quote($filename));
|
/PHP-8.1/ext/sqlite3/tests/ |
H A D | sqlite3_09_blob_bound_param.phpt | 30 $results = $db->query("SELECT id, quote(data) AS data FROM test ORDER BY id ASC");
|
/PHP-8.1/ext/json/tests/ |
H A D | fail001.phpt | 30 "['single quote']" 158 Testing: ['single quote']
|
/PHP-8.1/sapi/fpm/fpm/ |
H A D | zlog.h | 99 void zlog_stream_set_msg_quoting(struct zlog_stream *stream, zlog_bool quote);
|
/PHP-8.1/docs/ |
H A D | mailinglist-rules.md | 64 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.1/ext/mbstring/tests/ |
H A D | cp51932_encoding.phpt | 74 unset($fromUnicode["\x00\xAB"]); // Don't map left double angled quote mark to "much less than" 85 unset($fromUnicode["\x00\xBB"]); // Don't map right double angled quote mark to "much greater than"
|
/PHP-8.1/ext/mbstring/ |
H A D | mbstring.c | 564 … *php_mb_rfc1867_substring_conf(const zend_encoding *encoding, char *start, size_t len, char quote) in php_mb_rfc1867_substring_conf() argument 570 for (i = 0; i < len && start[i] != quote; ++i) { in php_mb_rfc1867_substring_conf() 571 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { in php_mb_rfc1867_substring_conf() 589 char *pos = *line, quote; in php_mb_rfc1867_getword() local 593 if ((quote = *pos) == '"' || quote == '\'') { in php_mb_rfc1867_getword() 595 while (*pos && *pos != quote) { in php_mb_rfc1867_getword() 596 if (*pos == '\\' && pos[1] && pos[1] == quote) { in php_mb_rfc1867_getword() 638 char quote = *str; in php_mb_rfc1867_getword_conf() local 641 return php_mb_rfc1867_substring_conf(encoding, str, strlen(str), quote); in php_mb_rfc1867_getword_conf()
|