Searched defs:content_type (Results 1 - 10 of 10) sorted by relevance
| /PHP_5_4/ext/iconv/ |
| H A D | iconv.c | 334 char *s, *content_type, *mimetype = NULL; local 360 len = spprintf(&content_type, 0, "Content-Type:%.*s; charset=%.*s", mimetype_len ? mimetype_len : (int) strlen(mimetype), mimetype, (int)(p - ICONVG(output_encoding)), ICONVG(output_encoding)); 362 len = spprintf(&content_type, 0, "Content-Type:%.*s; charset=%s", mimetype_len ? mimetype_len : (int) strlen(mimetype), mimetype, ICONVG(output_encoding)); 364 if (content_type && SUCCESS == sapi_add_header(content_type, len, 0)) {
|
| /PHP_5_4/ext/soap/ |
| H A D | php_http.c | 285 char *http_headers, *http_body, *content_type, *http_version, *cookie_itt; local 1145 content_type = get_http_header_value(http_headers,"Content-Type: "); 1146 if (content_type) { 1149 pos = strstr(content_type,";"); 1151 cmplen = pos - content_type; 1153 cmplen = strlen(content_type); 1155 if (strncmp(content_type, "text/xml", cmplen) == 0 || 1156 strncmp(content_type, "application/soap+xml", cmplen) == 0) { 1164 efree(content_type); 1171 efree(content_type); [all...] |
| /PHP_5_4/main/ |
| H A D | SAPI.c | 195 uint content_type_length = strlen(SG(request_info).content_type); 196 char *content_type = estrndup(SG(request_info).content_type, content_type_length); local 206 for (p=content_type; p<content_type+content_type_length; p++) { 211 content_type_length = p-content_type; 222 if (zend_hash_find(&SG(known_post_content_types), content_type, 233 sapi_module.sapi_error(E_WARNING, "Unsupported content type: '%s'", content_type); 241 SG(request_info).content_type_dup = content_type; 290 char *mimetype, *charset, *content_type; local [all...] |
| H A D | SAPI.h | 90 const char *content_type; member in struct:__anon272 277 char *content_type; member in struct:_sapi_post_entry
|
| /PHP_5_4/sapi/apache2filter/ |
| H A D | sapi_apache2.c | 129 ctx->r->content_type = apr_pstrdup(ctx->r->pool, val); 399 char *content_type; local 405 SG(request_info).content_type = apr_table_get(f->r->headers_in, "Content-Type"); 414 content_type = sapi_get_default_content_type(TSRMLS_C); 415 f->r->content_type = apr_pstrdup(f->r->pool, content_type); 419 efree(content_type); 668 if (r->content_type && !strncmp(r->content_type, "application/x-httpd-php", content_type_len-1)) { 669 if (r->content_type[content_type_le [all...] |
| /PHP_5_4/sapi/apache2handler/ |
| H A D | php_apache.h | 48 char *content_type; member in struct:php_struct
|
| /PHP_5_4/sapi/continuity/ |
| H A D | capi.c | 418 char *content_type = lstFset_get(NSG(t->req_hdrs), "content-type"); local 425 SG(request_info).content_type = capi_strdup(content_type); 436 capi_free(SG(request_info).content_type);
|
| /PHP_5_4/sapi/nsapi/ |
| H A D | nsapi.c | 970 char *content_type = pblock_findval("content-type", rq->headers); local 1027 SG(request_info).content_type = content_type;
|
| /PHP_5_4/sapi/cgi/ |
| H A D | cgi_main.c | 1155 SG(request_info).content_type = NULL; 1166 char *content_type = CGI_GETENV("CONTENT_TYPE"); local 1421 SG(request_info).content_type = (content_type ? content_type : "" );
|
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fpm_main.c | 1068 SG(request_info).content_type = NULL; 1079 char *content_type = sapi_cgibin_getenv("CONTENT_TYPE", sizeof("CONTENT_TYPE") - 1 TSRMLS_CC); local 1374 SG(request_info).content_type = (content_type ? content_type : "" );
|
Completed in 22 milliseconds