Searched refs:content_type (Results 1 – 14 of 14) sorted by relevance
/PHP-8.3/ext/curl/tests/ |
H A D | bug46739.phpt | 2 Bug #46739 (array returned by curl_getinfo should contain content_type key) 15 echo (array_key_exists('content_type', $info)) ? "set" : "not set";
|
/PHP-8.3/main/ |
H A D | SAPI.c | 176 char *content_type = estrndup(SG(request_info).content_type, content_type_length); in sapi_read_post_data() local 186 for (p = content_type; p < content_type + content_type_length; p++) { in sapi_read_post_data() 191 content_type_length = p-content_type; in sapi_read_post_data() 214 efree(content_type); in sapi_read_post_data() 301 char *mimetype, *charset, *content_type; in get_default_content_type() local 323 content_type = (char*)emalloc(*len + 1); in get_default_content_type() 324 p = content_type + prefix_len; in get_default_content_type() 332 content_type = (char*)emalloc(*len + 1); in get_default_content_type() 335 return content_type; in get_default_content_type() 464 && SG(request_info).content_type in sapi_activate() [all …]
|
H A D | SAPI.h | 84 const char *content_type; member 271 char *content_type; member
|
/PHP-8.3/sapi/apache2handler/ |
H A D | sapi_apache2.c | 119 if (ctx->content_type) { in php_apache_sapi_header_handler() 120 efree(ctx->content_type); in php_apache_sapi_header_handler() 122 ctx->content_type = estrdup(val); in php_apache_sapi_header_handler() 168 if (!ctx->content_type) { in php_apache_sapi_send_headers() 169 ctx->content_type = sapi_get_default_content_type(); in php_apache_sapi_send_headers() 171 ap_set_content_type(ctx->r, apr_pstrdup(ctx->r->pool, ctx->content_type)); in php_apache_sapi_send_headers() 172 efree(ctx->content_type); in php_apache_sapi_send_headers() 173 ctx->content_type = NULL; in php_apache_sapi_send_headers() 528 SG(request_info).content_type = apr_table_get(r->headers_in, "Content-Type"); in php_apache_request_ctor()
|
H A D | php_apache.h | 49 char *content_type; member
|
H A D | php_functions.c | 149 ADD_STRING(content_type); in PHP_FUNCTION()
|
/PHP-8.3/ext/soap/tests/ |
H A D | custom_content_type.phpt | 38 'content_type' => sprintf("Multipart/Related") 64 'content_type' => sprintf("")
|
/PHP-8.3/ext/soap/ |
H A D | php_http.c | 360 char *content_type, *http_version, *cookie_itt; in make_http_soap_request() local 1251 content_type = get_http_header_value(ZSTR_VAL(http_headers), "Content-Type: "); in make_http_soap_request() 1252 if (content_type) { in make_http_soap_request() 1255 pos = strstr(content_type,";"); in make_http_soap_request() 1257 cmplen = pos - content_type; in make_http_soap_request() 1259 cmplen = strlen(content_type); in make_http_soap_request() 1261 if (strncmp(content_type, "text/xml", cmplen) == 0 || in make_http_soap_request() 1262 strncmp(content_type, "application/soap+xml", cmplen) == 0) { in make_http_soap_request() 1277 efree(content_type); in make_http_soap_request()
|
/PHP-8.3/ext/standard/tests/file/ |
H A D | file.inc | 192 string $content_type = "numeric", 212 $content_type = Specify type of the content to fill in the file. 235 $content_type = "numeric", 279 if ( $content_type == "empty" ) { 293 if( fill_file($file_handle, $content_type, $file_size) )
|
/PHP-8.3/sapi/fpm/fpm/ |
H A D | fpm_main.c | 989 SG(request_info).content_type = NULL; in init_request_info() 998 char *content_type = FCGI_GETENV(request, "CONTENT_TYPE"); in init_request_info() local 1346 SG(request_info).content_type = (content_type ? content_type : "" ); in init_request_info()
|
/PHP-8.3/sapi/cgi/ |
H A D | cgi_main.c | 1178 SG(request_info).content_type = NULL; 1189 char *content_type = CGI_GETENV("CONTENT_TYPE"); local 1443 SG(request_info).content_type = (content_type ? content_type : "" );
|
/PHP-8.3/ext/iconv/ |
H A D | iconv.c | 302 char *s, *content_type, *mimetype = NULL; in php_iconv_output_handler() local 327 …len = spprintf(&content_type, 0, "Content-Type:%.*s; charset=%.*s", mimetype_len ? mimetype_len : … in php_iconv_output_handler() 329 …len = spprintf(&content_type, 0, "Content-Type:%.*s; charset=%s", mimetype_len ? mimetype_len : (i… in php_iconv_output_handler() 331 if (content_type && SUCCESS == sapi_add_header(content_type, len, 0)) { in php_iconv_output_handler()
|
/PHP-8.3/sapi/litespeed/ |
H A D | lsapi_main.c | 632 SG(request_info).content_type = pContentType ? pContentType : ""; in init_request_info()
|
/PHP-8.3/sapi/cli/ |
H A D | php_cli_server.c | 1956 request_info->content_type = Z_STRVAL_P(val); in php_cli_server_client_populate_request_info()
|
Completed in 50 milliseconds