Google\Cloud\NaturalLanguage\NaturalLanguageClient::analyzeEntities PHP Method

analyzeEntities() public method

Example: $annotation = $language->analyzeEntities('Google Cloud Platform is a powerful tool.'); foreach ($annotation->entities() as $entity) { echo $entity['type']; }
See also: https://cloud.google.com/natural-language/reference/rest/v1beta1/documents/analyzeEntities Analyze Entities API documentation
public analyzeEntities ( string | StorageObject $content, array $options = [] ) : Annotation
$content string | Google\Cloud\Storage\StorageObject The content to analyze.
$options array [optional] { Configuration options. @type string $type The document type. Acceptable values are `PLAIN_TEXT` or `HTML`. **Defaults to** `"PLAIN_TEXT"`. @type string $language The language of the document. Both ISO (e.g., en, es) and BCP-47 (e.g., en-US, es-ES) language codes are accepted. Defaults to `"en"` (English). @type string $encodingType The text encoding type used by the API to calculate offsets. Acceptable values are `"NONE"`, `"UTF8"`, `"UTF16"` and `"UTF32"`. **Defaults to** `"UTF8"`. }
return Annotation
    public function analyzeEntities($content, array $options = [])
    {
        return new Annotation($this->connection->analyzeEntities($this->formatRequest($content, $options)));
    }