PHP 8.5.0 Alpha 1 available for testing

Voting

: min(eight, two)?
(Example: nine)

The Note You're Voting On

dev at omikrosys dot com
15 years ago
Just to inform you all, do not get confused between Content-Transfer-Encoding and Content-Encoding

Content-Transfer-Encoding specifies the encoding used to transfer the data within the HTTP protocol, like raw binary or base64. (binary is more compact than base64. base64 having 33% overhead).
Eg Use:- header('Content-Transfer-Encoding: binary');

Content-Encoding is used to apply things like gzip compression to the content/data.
Eg Use:- header('Content-Encoding: gzip');

<< Back to user notes page

To Top