What does it mean?
- Byte count of encoded content string with encoding specified in header.
- Character count of content string.
Especially in case of "Content-Type: application/x-www-form-urlencoded".
|
What does it mean?
Especially in case of "Content-Type: application/x-www-form-urlencoded". |
|||
|
|
It doesn't matter what the content-type is. |
|||||||||
|
|
It's the number of bytes of data in the body of the request or response. The body is the part that comes after the blank line below the headers. |
|||
|
|
|
It means the exact byte length of the HTTP body. Generally it is used for HTTP 1.1 so that the receiving party knows when the current response/request has finished, so the connection can be reused for another request. Alternatively, content-length can be omitted and a chunked encoding can be used, or if both are missing, then at the end of the response the connection must be closed. |
|||
|
|
My interpretation is that this means the length "on the wire", i.e. the length of the *encoded" content |
|||
|
|
From this page
|
||||
|
|
|
One octet is 8 bits. Content-length is the number of octets that the message body represents. |
|||
|
|
|
According to the spec: The Content-Length entity-header field indicates the size of the entity-body, in decimal number of OCTETs, sent to the recipient or, in the case of the HEAD method, the size of the entity-body that would have been sent had the request been a GET.
An example is
Applications SHOULD use this field to indicate the transfer-length of the message-body, unless this is prohibited by the rules in section 4.4. Any Content-Length greater than or equal to zero is a valid value. Section 4.4 describes how to determine the length of a message-body if a Content-Length is not given. Note that the meaning of this field is significantly different from the corresponding definition in MIME, where it is an optional field used within the "message/external-body" content-type. In HTTP, it SHOULD be sent whenever the message's length can be determined prior to being transferred, unless this is prohibited by the rules in section 4.4. |
|||
|
|
|
The Content-Length entity-header field indicates the size of the entity-body, in decimal number of OCTETs, sent to the recipient or, in the case of the HEAD method, the size of the entity-body that would have been sent had the request been a GET.
An example is
Applications SHOULD use this field to indicate the transfer-length of the message-body. In PHP you would use something like this.
In case of "Content-Type: application/x-www-form-urlencoded" the encoded data is sent to the processing agent designated so you can set the length or size of the data you are going to post. |
||||
|
|