Function __global->_convert_request_data_encodings
Definitions
sources/character_sets.php
- Performs lots of magic to make sure data encodings are converted correctly. Input, and output too (as often stores internally in UTF or performs automatic dynamic conversions from internal to external charsets).
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $known_utf8 | boolean | No | No | False | N/A | N/A | Whether we know we are working in utf-8. This is the case for AJAX calls. |
Preview
Code (PHP)
/**
* Performs lots of magic to make sure data encodings are converted correctly. Input, and output too (as often stores internally in UTF or performs automatic dynamic conversions from internal to external charsets).
*
* @param boolean $known_utf8 Whether we know we are working in utf-8. This is the case for AJAX calls.
*/
function _convert_request_data_encodings(bool $known_utf8 = false)
* Performs lots of magic to make sure data encodings are converted correctly. Input, and output too (as often stores internally in UTF or performs automatic dynamic conversions from internal to external charsets).
*
* @param boolean $known_utf8 Whether we know we are working in utf-8. This is the case for AJAX calls.
*/
function _convert_request_data_encodings(bool $known_utf8 = false)

