Function __global->is_under_radar
Definitions
sources/database_search.php
- Find whether a phrase is too small for full-text search.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $test | string | No | No | required parameter | N/A | N/A | The phrase |
Returns
- Whether it is
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Find whether a phrase is too small for full-text search.
*
* @param string $test The phrase
* @return boolean Whether it is
*/
function is_under_radar(string $test) : bool
* Find whether a phrase is too small for full-text search.
*
* @param string $test The phrase
* @return boolean Whether it is
*/
function is_under_radar(string $test) : bool

