Function __global->fix_bad_unicode
Definitions
sources/global3.php
- Fixes bad unicode (utf-8) in the input. Useful when input may be dirty, e.g. from a txt file, or from a potential hacker.The fix is imperfect, it will actually treat the input as ISO-8859-1 if not valid utf-8, then reconvert. Some limited scrambling is considered better than a stack trace.This function does nothing if we are not using utf-8.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $input | string | No | No | required parameter | N/A | N/A | Input string |
| $definitely_unicode | boolean | No | No | False | N/A | N/A | If we know the input is meant to be unicode |
Returns
- Guaranteed valid utf-8, if we're using it, otherwise the same as the input string
- Type: string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Fixes bad unicode (utf-8) in the input. Useful when input may be dirty, e.g. from a txt file, or from a potential hacker.The fix is imperfect, it will actually treat the input as ISO-8859-1 if not valid utf-8, then reconvert. Some limited scrambling is considered better than a stack trace.This function does nothing if we are not using utf-8.
*
* @param string $input Input string
* @param boolean $definitely_unicode If we know the input is meant to be unicode
* @return string Guaranteed valid utf-8, if we're using it, otherwise the same as the input string
*/
function fix_bad_unicode(string $input, bool $definitely_unicode = false) : string
* Fixes bad unicode (utf-8) in the input. Useful when input may be dirty, e.g. from a txt file, or from a potential hacker.The fix is imperfect, it will actually treat the input as ISO-8859-1 if not valid utf-8, then reconvert. Some limited scrambling is considered better than a stack trace.This function does nothing if we are not using utf-8.
*
* @param string $input Input string
* @param boolean $definitely_unicode If we know the input is meant to be unicode
* @return string Guaranteed valid utf-8, if we're using it, otherwise the same as the input string
*/
function fix_bad_unicode(string $input, bool $definitely_unicode = false) : string

