Function __global->check_spelling

Definitions

sources/webstandards2.php

  • Checks the spelling of some text.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: array

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$value string No No required parameter N/A N/A The text

Returns

  • Array of errors
  • Type: array
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Checks the spelling of some text.
 *
 * @param  string $value The text
 * @return array Array of errors
 */

function check_spelling(string $value) : array