Function __global->spell_correct_phrase
Definitions
sources/spelling.php
- Fix spellings in input string.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $text | string | No | No | required parameter | N/A | N/A | Input string |
Returns
- Fixed input string
- Type: string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Fix spellings in input string.
*
* @param string $text Input string
* @return string Fixed input string
*/
function spell_correct_phrase(string $text) : string
* Fix spellings in input string.
*
* @param string $text Input string
* @return string Fixed input string
*/
function spell_correct_phrase(string $text) : string

