PHP code example of tootootltd / azure-text-analytics

1. Go to this page and download the library: Download tootootltd/azure-text-analytics library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tootootltd / azure-text-analytics example snippets


$myText = 'Example';

$myText = [
	'id' => 1,
	'text' => 'Example'
];

$myText = [
	[
		'id' => 1,
		'text' => 'Example one'
	],
	[
		'id' => 2,
		'text' => 'Example two'
	],
	[
		'id' => 3,
		'text' => 'Example three'
	]
];

$text = new AzureTextAnalytics($myText)

$text = new AzureTextAnalytics($myText)
$text->sentimentAnalsis();

$text = new AzureTextAnalytics($myText)
$text->keyPhrases();

$text = new AzureTextAnalytics($myText)
$text->detectLanguage();

$text = new AzureTextAnalytics($myText)
$text->namedEntityRecognition();

$text = new AzureTextAnalytics($myText)
$text->entityLinking();
bash
php artisan vendor:publish --provider="Tootootltd\AzureTextAnalytics\AzureTextAnalyticsServiceProvider"