$_POST_BINARY is an array variable, formed from reading stdin and translating the url-form-encoded or multi-part-encoded data.
# Metadata
Platforms: server OS: mac, windows, linux Introduced: 4.6.3 Security:
# Syntax
$_POST_BINARY
# Examples
put $_POST_BINARY into tPOSTArray
put uniEncode($_POST_BINARY["name"],"UTF8") into tUnicodeName
# Description
Use the $_POST_BINARY keyword to access posted form data. It is an array formed from reading stdin and translating the data. $_POST_BINARY is identical to $_POST except that it does not perform any character set translation.
$_POST_BINARY is only available when running in CGI mode (Server).
The $_POST_BINARY keyword supports multi dimensional arrays.
# Tags
# See
- **keyword:** $_POST, $_POST_RAW, $_SERVER, $_GET_BINARY, $_GET_RAW, $_GET