Home
last modified time | relevance | path

Searched refs:query (Results 26 – 50 of 582) sorted by last modified time

12345678910>>...24

/php-src/ext/dom/
H A Dxpath.c389 PHP_METHOD(DOMXPath, query) in PHP_METHOD() argument
394 PHP_METHOD(Dom_XPath, query) in PHP_METHOD() argument
/php-src/ext/dom/tests/modern/spec/
H A Dbug81468.phpt18 echo "/n:foo/bar -> ", count($xpath->query('/n:foo/bar')), "\n";
19 echo "/n:foo/n:bar -> ", count($xpath->query('/n:foo/n:bar')), "\n";
28 echo "/n:foo/bar -> ", count($xpath->query('/n:foo/bar')), "\n";
29 echo "/n:foo/n:bar -> ", count($xpath->query('/n:foo/n:bar')), "\n";
/php-src/ext/dom/tests/modern/html/parser/
H A Dpredefined_namespaces.phpt32 foreach ($xpath->query("//*[name()='body']//*") as $node) {
H A Dxml_style_namespace.phpt22 foreach ($xpath->query("//*[name()='body']//*") as $node) {
H A DHTMLDocument_fromString_DOM_HTML_NO_DEFAULT_NS.phpt11 var_dump($xpath->query("//p"));
12 var_dump($xpath->query("//x:p"));
17 var_dump($xpath->query("//p"));
18 var_dump($xpath->query("//x:p"));
H A DHTMLDocument_fromString_LIBXML_COMPACT.phpt27 foreach ($xpath->query("//*[name()='p']") as $p) {
H A DHTMLDocument_fromString_line_column.phpt27 foreach ($xpath->query("//*") as $element) {
31 foreach ($xpath->query("//*[name()='strong']") as $element) {
35 foreach ($xpath->query("//*[name()='div']") as $element) {
41 foreach ($xpath->query("//comment()") as $comment) {
H A DHTMLDocument_fromFile_DOM_HTML_NO_DEFAULT_NS.phpt11 var_dump($xpath->query("//p"));
12 var_dump($xpath->query("//x:p"));
17 var_dump($xpath->query("//p"));
18 var_dump($xpath->query("//x:p"));
/php-src/ext/dom/tests/modern/html/interactions/
H A Dnoscript.phpt19 $noscript = $xpath->query("//noscript")[0];
/php-src/.github/workflows/
H A Dpush.yml115 # GitHub has no way to query the job name (github.job is the
/php-src/ext/soap/
H A Dphp_http.c571 if (phpurl->query) { in make_http_soap_request()
573 smart_str_appends(&soap_headers, ZSTR_VAL(phpurl->query)); in make_http_soap_request()
734 if (phpurl->query) { in make_http_soap_request()
736 PHP_MD5Update(&md5ctx, (unsigned char*)ZSTR_VAL(phpurl->query), ZSTR_LEN(phpurl->query)); in make_http_soap_request()
782 if (phpurl->query) { in make_http_soap_request()
784 smart_str_appends(&soap_headers, ZSTR_VAL(phpurl->query)); in make_http_soap_request()
1228 if (phpurl->query) phpurl->query = zend_string_copy(phpurl->query); in make_http_soap_request()
/php-src/ext/soap/tests/bugs/
H A Dbug73237.phpt17 var_dump($client->query(""));
/php-src/ext/sqlite3/
H A Dsqlite3.c550 PHP_METHOD(SQLite3, query) in PHP_METHOD() argument
/php-src/ext/sqlite3/tests/
H A Dsqlite3_trampoline_setauthorizer_null.phpt13 // This query should be accepted
/php-src/ext/odbc/
H A Dodbc.stub.php338 function odbc_prepare(Odbc\Connection $odbc, string $query): Odbc\Result|false {} argument
348 function odbc_exec(Odbc\Connection $odbc, string $query): Odbc\Result|false {} argument
351 function odbc_do(Odbc\Connection $odbc, string $query): Odbc\Result|false {} argument
H A Dodbc_arginfo.h19 ZEND_ARG_TYPE_INFO(0, query, IS_STRING, 0)
/php-src/ext/pdo_sqlite/tests/
H A Dgh13998.phpt14 $db->query('CREATE TABLE test (a int, b int)');
15 $stmt = $db->query('INSERT INTO test VALUES (1, 1), (2, 2), (3, 3)');
19 $db->query('SELECT S(a) FROM test');
/php-src/ext/dom/tests/
H A Dgh13960.phpt2 GH-13960 (NULL bytes in XPath query)
11 $xp->query("//foo[contains(text(), " . $xp->quote("tes\x00t") . ")]");
/php-src/ext/odbc/tests/
H A Dodbc_fetch_row_001.phpt2 odbc_fetch_row(): Getting data from query
/php-src/ext/mysqli/
H A Dmysqli_api.c504 char *query = NULL; in PHP_FUNCTION() local
524 if (FAIL == mysql_stmt_prepare(stmt->stmt, query, query_len)) { in PHP_FUNCTION()
535 stmt->query = estrdup(query); in PHP_FUNCTION()
1300 char *query = NULL; in PHP_FUNCTION() local
1313 if (mysql_stmt_prepare(stmt->stmt, query, query_len)) { in PHP_FUNCTION()
1331 stmt->query = estrdup(query); in PHP_FUNCTION()
1362 char *query = NULL; in PHP_FUNCTION() local
1372 if (mysql_real_query(mysql->mysql, query, query_len)) { in PHP_FUNCTION()
1379 php_mysqli_report_index(query, mysqli_server_status(mysql->mysql)); in PHP_FUNCTION()
1873 char *query; in PHP_FUNCTION() local
[all …]
H A Dmysqli_nonapi.c536 char *query = NULL; local
539 …(ZEND_NUM_ARGS(), getThis(), "Os", &mysql_link, mysqli_link_class_entry, &query, &query_len) == FA…
545 if (mysql_real_query(mysql->mysql, query, query_len)) {
568 char *query = NULL; local
572 …END_NUM_ARGS(), getThis(), "Os|l", &mysql_link, mysqli_link_class_entry, &query, &query_len, &resu…
593 if (mysqli_async_query(mysql->mysql, query, query_len)) {
601 if (mysql_real_query(mysql->mysql, query, query_len)) {
609 php_mysqli_report_index(query, mysqli_server_status(mysql->mysql));
628 php_mysqli_report_index(query, mysqli_server_status(mysql->mysql));
/php-src/ext/standard/
H A Durl_scanner_ex.re228 * When URL does not have path and query string add "/?".
231 if (!url_parts->path && !url_parts->query && !url_parts->fragment) {
266 if (url_parts->query) {
267 smart_str_appends(dest, ZSTR_VAL(url_parts->query));
/php-src/ext/zend_test/tests/
H A Dobserver_sqlite_create_function.phpt21 foreach ($db->query('SELECT returnOne()') as $row) {
36 <!-- init PDO::query() -->
37 <PDO::query>
41 </PDO::query>
/php-src/ext/mysqlnd/
H A Dmysqlnd_ps.c372 MYSQLND_METHOD(mysqlnd_stmt, prepare)(MYSQLND_STMT * const s, const char * const query, const size_… in MYSQLND_METHOD()
382 DBG_INF_FMT("query=%s", query); in MYSQLND_METHOD()
417 const MYSQLND_CSTRING query_string = {query, query_len}; in MYSQLND_METHOD()
H A Dmysqlnd_connection.c1022 char * query; local
1770 char * query; local
1781 if (!query) {
1786 enum_func_status ret = conn->m->query(conn, query, query_len);
1820 char * query; local
1827 if (!query) {
1832 enum_func_status ret = conn->m->query(conn, query, query_len);
1855 char *query; local
1857 if (!query) {
1880 char *query; local
[all …]

Completed in 79 milliseconds

12345678910>>...24