Searched defs:content_type (Results 1 - 10 of 10) sorted by relevance
| /PHP_5_3/ext/iconv/ |
| H A D | iconv.c | 2342 char *out_buffer, *content_type, *mimetype = NULL, *s; local 2373 len = spprintf(&content_type, 0, "Content-Type:%s; charset=%.*s", mimetype, (int)(p - ICONVG(output_encoding)), ICONVG(output_encoding)); 2375 len = spprintf(&content_type, 0, "Content-Type:%s; charset=%s", mimetype, ICONVG(output_encoding)); 2377 if (content_type && sapi_add_header(content_type, len, 0) != FAILURE) {
|
| /PHP_5_3/ext/soap/ |
| H A D | php_http.c | 285 char *http_headers, *http_body, *content_type, *http_version, *cookie_itt; local 1143 content_type = get_http_header_value(http_headers,"Content-Type: "); 1144 if (content_type) { 1147 pos = strstr(content_type,";"); 1149 cmplen = pos - content_type; 1151 cmplen = strlen(content_type); 1153 if (strncmp(content_type, "text/xml", cmplen) == 0 || 1154 strncmp(content_type, "application/soap+xml", cmplen) == 0) { 1162 efree(content_type); 1169 efree(content_type); [all...] |
| /PHP_5_3/main/ |
| H A D | SAPI.c | 137 uint content_type_length = strlen(SG(request_info).content_type); 138 char *content_type = estrndup(SG(request_info).content_type, content_type_length); local 148 for (p=content_type; p<content_type+content_type_length; p++) { 153 content_type_length = p-content_type; 164 if (zend_hash_find(&SG(known_post_content_types), content_type, 175 sapi_module.sapi_error(E_WARNING, "Unsupported content type: '%s'", content_type); 183 SG(request_info).content_type_dup = content_type; 232 char *mimetype, *charset, *content_type; local [all...] |
| H A D | SAPI.h | 90 const char *content_type; member in struct:__anon245 273 char *content_type; member in struct:_sapi_post_entry
|
| /PHP_5_3/sapi/apache2filter/ |
| H A D | sapi_apache2.c | 129 ctx->r->content_type = apr_pstrdup(ctx->r->pool, val); 400 char *content_type; local 406 SG(request_info).content_type = apr_table_get(f->r->headers_in, "Content-Type"); 415 content_type = sapi_get_default_content_type(TSRMLS_C); 416 f->r->content_type = apr_pstrdup(f->r->pool, content_type); 420 efree(content_type); 670 if (r->content_type && !strncmp(r->content_type, "application/x-httpd-php", content_type_len-1)) { 671 if (r->content_type[content_type_le [all...] |
| /PHP_5_3/sapi/apache2handler/ |
| H A D | php_apache.h | 48 char *content_type; member in struct:php_struct
|
| /PHP_5_3/sapi/cgi/ |
| H A D | cgi_main.c | 1098 SG(request_info).content_type = NULL; 1109 char *content_type = sapi_cgibin_getenv("CONTENT_TYPE", sizeof("CONTENT_TYPE")-1 TSRMLS_CC); local 1361 SG(request_info).content_type = (content_type ? content_type : "" );
|
| /PHP_5_3/sapi/continuity/ |
| H A D | capi.c | 419 char *content_type = lstFset_get(NSG(t->req_hdrs), "content-type"); local 426 SG(request_info).content_type = capi_strdup(content_type); 437 capi_free(SG(request_info).content_type);
|
| /PHP_5_3/sapi/nsapi/ |
| H A D | nsapi.c | 975 char *content_type = pblock_findval("content-type", rq->headers); local 1032 SG(request_info).content_type = content_type;
|
| /PHP_5_3/sapi/fpm/fpm/ |
| H A D | fpm_main.c | 1074 SG(request_info).content_type = NULL; 1085 char *content_type = sapi_cgibin_getenv("CONTENT_TYPE", sizeof("CONTENT_TYPE") - 1 TSRMLS_CC); local 1375 SG(request_info).content_type = (content_type ? content_type : "" );
|
Completed in 20 milliseconds