Function __global->_trim_quoted_substrings
Definitions
sources/database_security_filter.php
- Blank out substrings within a query, which makes it easier to analyse (no need to consider escapings).
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $string | string | No | No | required parameter | N/A | N/A | Input string |
Returns
- Simplified substring
- Type: string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Blank out substrings within a query, which makes it easier to analyse (no need to consider escapings).
*
* @param string $string Input string
* @return string Simplified substring
*/
function _trim_quoted_substrings(string $string) : string
* Blank out substrings within a query, which makes it easier to analyse (no need to consider escapings).
*
* @param string $string Input string
* @return string Simplified substring
*/
function _trim_quoted_substrings(string $string) : string

