Home
last modified time | relevance | path

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

12345678910>>...18

/PHP-7.1/
H A Dserver-tests.php151 function post_result_data($query,$data) argument
153 $url = QA_SUBMISSION_PAGE.'?'.$query;
/PHP-7.1/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-7.1/sapi/fpm/tests/
H A Dtester.inc432 * @param string $query
441 $query = '',
444 return $this->request($query, $headers, $uri, $address, $successMessage, $errorMessage);
485 $query = $format === 'plain' ? '' : $format;
486 $response = $this->request($query, [], $statusPath, $address);
494 * @param string $query
504 string $query = '',
525 'QUERY_STRING' => $query,
526 'REQUEST_URI' => $uri . ($query ? '?'.$query : ""),
/PHP-7.1/sapi/fpm/
H A Dwww.conf.in178 ; 'html', 'xml' or 'json' in the query string will return the corresponding
186 ; query string will also return status for each pool process.
200 ; request URI - the request URI with the query string;
300 ; %q: the query string
301 ; %Q: the '?' character if query string exists
302 ; %r: the request URI (without the query string, see %q and %Q)
/PHP-7.1/ext/xsl/tests/
H A Dxslt004.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@encoding");
H A Dxslt002.phpt11 $res = $xp->query("/xsl:stylesheet/xsl:output/@method");
H A Dxslt005.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@indent");
/PHP-7.1/ext/standard/
H A Durl_scanner_ex.re227 * When URL does not have path and query string add "/?".
230 if (!url_parts->path && !url_parts->query && !url_parts->fragment) {
265 if (url_parts->query) {
266 smart_str_appends(dest, url_parts->query);
H A Durl.c54 if (theurl->query) in php_url_free()
55 efree(theurl->query); in php_url_free()
320 ret->query = estrndup(p, (e - p)); in php_url_parse_ex()
321 php_replace_controlchars_ex(ret->query, (e - p)); in php_url_parse_ex()
375 if (resource->query != NULL) RETVAL_STRING(resource->query); in PHP_FUNCTION()
403 if (resource->query != NULL) in PHP_FUNCTION()
404 add_assoc_string(return_value, "query", resource->query); in PHP_FUNCTION()
H A Durl.h30 char *query; member
H A Durl_scanner_ex.c227 if (!url_parts->path && !url_parts->query && !url_parts->fragment) { in PHP_INI_END()
262 if (url_parts->query) { in PHP_INI_END()
263 smart_str_appends(dest, url_parts->query); in PHP_INI_END()
H A Dhttp_fopen_wrapper.c402 if (resource->query) { in php_stream_url_wrap_http_ex()
404 smart_str_appends(&req_buf, resource->query); in php_stream_url_wrap_http_ex()
/PHP-7.1/ext/standard/tests/url/
H A Dbug54180.phpt18 ["query"]=>
H A Dparse_url_basic_001.phpt223 ["query"]=>
337 ["query"]=>
348 ["query"]=>
361 ["query"]=>
374 ["query"]=>
385 ["query"]=>
398 ["query"]=>
409 ["query"]=>
422 ["query"]=>
433 ["query"]=>
[all …]
H A Dparse_url_variation_002_32bit.phpt104 ["query"]=>
H A Dparse_url_variation_002_64bit.phpt104 ["query"]=>
/PHP-7.1/ext/standard/tests/strings/
H A Dhttp_build_query_variation1.phpt8 …* Description: Generates a URL-encoded query string from the associative (or indexed) array provid…
H A Dhttp_build_query_variation2.phpt8 …* Description: Generates a URL-encoded query string from the associative (or indexed) array provid…
H A Dhttp_build_query_variation3.phpt12 …* Description: Generates a URL-encoded query string from the associative (or indexed) array provid…
/PHP-7.1/ext/standard/tests/file/
H A Dstream_rfc2397_003.phpt10 'data://application/vnd-xxx-query,select_vcount,fcol_from_fieldtable/local',
H A Dstream_rfc2397_005.phpt10 'data:application/vnd-xxx-query,select_vcount,fcol_from_fieldtable/local',
/PHP-7.1/ext/sqlite3/tests/
H A Dsqlite3_query_error.phpt2 SQLite3::query parameters
12 echo 'Testing SQLite3 query without parameters' . PHP_EOL;
13 $db->query();
15 echo 'Testing SQLite3 query with one array parameter' . PHP_EOL;
16 $db->query(array());
19 var_dump($db->query(''));
24 Testing SQLite3 query without parameters
26 Warning: SQLite3::query() expects exactly 1 parameter, 0 given in %s on line %d
27 Testing SQLite3 query with one array parameter
29 Warning: SQLite3::query() expects parameter 1 to be %binary_string_optional%, array given in %s on …
H A Dsqlite3_querysingle_error.phpt2 SQLite3::query parameters
H A Dsqlite3result_fetcharray_with_two_params_fails.phpt15 $result = $db->query('SELECT bar FROM foo');

Completed in 77 milliseconds

12345678910>>...18