Home
last modified time | relevance | path

Searched refs:query (Results 1 – 25 of 401) sorted by last modified time

12345678910>>...17

/PHP-5.5/
H A Dserver-tests.php159 function post_result_data($query,$data) argument
161 $url = QA_SUBMISSION_PAGE.'?'.$query;
/PHP-5.5/sapi/tests/
H A Dtest001.phpt4 This would be similar to what IIS produces for a simple query.
H A Dtest003.phpt4 This would be similar to what IIS produces for a simple query
/PHP-5.5/sapi/thttpd/
H A Dthttpd.c312 CONDADD(QUERY_STRING, query); in sapi_thttpd_register_variables()
442 SG(request_info).query_string = TG(hc)->query?strdup(TG(hc)->query):NULL;
511 HANDLE_STR(query); \
H A Dthttpd_patch453 + hc->query[0] = '\0';
541 - hc->query[0] = '\0';
/PHP-5.5/sapi/tux/
H A Dphp_tux.c324 SG(request_info).query_string = strdup(TG(req)->query); in tux_request_ctor()
327 smart_str_appends_ex(&s, TG(req)->query, 1); in tux_request_ctor()
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in295 ; 'html', 'xml' or 'json' in the query string will return the corresponding
303 ; query string will also return status for each pool process.
317 ; request URI - the request URI with the query string;
417 ; %q: the query string
418 ; %Q: the '?' character if query string exists
419 ; %r: the request URI (without the query string, see %q and %Q)
/PHP-5.5/sapi/aolserver/
H A Daolserver.c336 if(NSG(conn)->request->query) in php_ns_sapi_register_variables()
337 ADD_STRINGX("QUERY_STRING", NSG(conn)->request->query); in php_ns_sapi_register_variables()
442 SG(request_info).query_string = safe_strdup(NSG(conn->request->query)); in php_ns_request_ctor()
/PHP-5.5/ext/xsl/tests/
H A Dxslt002.phpt11 $res = $xp->query("/xsl:stylesheet/xsl:output/@method");
H A Dxslt004.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@encoding");
H A Dxslt005.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@indent");
/PHP-5.5/ext/sybase_ct/tests/
H A Dbug27843.phpt2 Sybase-CT bug #27843 (notices when query is a stored procedure)
H A Dbug30312-withfree.phpt17 $query= sybase_unbuffered_query('select datepart(yy, getdate())');
18 $array= sybase_fetch_row($query);
20 sybase_free_result($query);
22 $query= sybase_unbuffered_query('select datepart(mm, getdate()), datepart(dd, getdate())');
23 $array= sybase_fetch_row($query);
25 sybase_free_result($query);
H A Dbug30312.phpt17 $query= sybase_unbuffered_query('select datepart(yy, getdate())');
18 $array= sybase_fetch_array($query);
21 $query= sybase_unbuffered_query('select datepart(yy, getdate())');
22 $array= sybase_fetch_array($query);
H A Dtest.inc63 // {{{ void sybase_select_ex(resource dbh, string query)
64 // Returns all fetched rows from an SQL query
65 function sybase_select_ex($dbh, $query) {
66 printf(">>> Query: %s\n", $query);
67 $h= sybase_query($query, $dbh);
79 // {{{ mixed sybase_select_single(resource dbh, string query)
80 // Fires an SQL query and returns the first value from the first row
81 function sybase_select_single($dbh, $query) {
82 $a = sybase_fetch_row(sybase_query($query, $dbh));
H A Dtest_fields.phpt16 // Issue a query
H A Dtest_query_nostore.phpt2 Sybase-CT query without storing
H A Dtest_unbuffered_no_full_fetch.phpt2 Sybase-CT unbuffered query without full fetching
21 // Fetch #2 - without having fetched all rows from previous query
25 // Fetch #3 - free first, without having fetched all rows from previous query
30 // Close - without having fetched all rows from previous query
39 …: Sybase: Called without first fetching all rows from a previous unbuffered query in %s on line %d
H A Dtest_unbuffered_query.phpt2 Sybase-CT unbuffered query
/PHP-5.5/ext/standard/
H A Durl.c54 if (theurl->query) in php_url_free()
55 efree(theurl->query); in php_url_free()
223 char *query, *fragment; in php_url_parse_ex() local
225 query = memchr(s, '?', (ue - s)); in php_url_parse_ex()
228 if (query && fragment) { in php_url_parse_ex()
229 if (query > fragment) { in php_url_parse_ex()
232 e = query; in php_url_parse_ex()
234 } else if (query) { in php_url_parse_ex()
235 e = query; in php_url_parse_ex()
412 if (resource->query != NULL) RETVAL_STRING(resource->query, 1); in PHP_FUNCTION()
[all …]
H A Durl.h30 char *query; member
/PHP-5.5/ext/sybase_ct/
H A Dphp_sybase_ct.c72 ZEND_ARG_INFO(0, query)
77 ZEND_ARG_INFO(0, query)
1428 char *query; in php_sybase_query() local
1440 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|rb", &query, &len, &sybase_link_index, &st… in php_sybase_query()
1496 if (ct_command(sybase_ptr->cmd, CS_LANG_CMD, query, CS_NULLTERM, CS_UNUSED)!=CS_SUCCEED) { in php_sybase_query()
/PHP-5.5/ext/standard/tests/url/
H A Dparse_url_basic_001.phpt224 ["query"]=>
338 ["query"]=>
349 ["query"]=>
362 ["query"]=>
375 ["query"]=>
386 ["query"]=>
399 ["query"]=>
410 ["query"]=>
423 ["query"]=>
434 ["query"]=>
[all …]
H A Dparse_url_variation_002_32bit.phpt104 ["query"]=>
124 ["query"]=>
H A Dparse_url_variation_002_64bit.phpt104 ["query"]=>

Completed in 77 milliseconds

12345678910>>...17