Function __global->obfuscate_entities
Definitions
sources/crypt.php
- Obfuscate the given text using HTML entity encoding.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $val | string | No | No | required parameter | N/A | N/A | The text to obfuscate |
Returns
- The obfuscated version
- Type: string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Obfuscate the given text using HTML entity encoding.
*
* @param string $val The text to obfuscate
* @return string The obfuscated version
*/
function obfuscate_entities(string $val) : string
* Obfuscate the given text using HTML entity encoding.
*
* @param string $val The text to obfuscate
* @return string The obfuscated version
*/
function obfuscate_entities(string $val) : string

