PHP code example of masterweber / morpher-ws3-php-client
1. Go to this page and download the library: Download masterweber/morpher-ws3-php-client 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/ */
masterweber / morpher-ws3-php-client example snippets
use Morpher\Morpher;
$morpher = new Morpher(
'https://localhost', // по умолчанию https://ws3.morpher.ru
'YOUR_TOKEN', // по умолчанию null
1.0 // по умолчанию 3.0 сек
);
$date = new DateTime();
$result = $morpher->russian->spellDate($date);
echo $result->genitive; // двадцать девятого июня две тысячи девятнадцатого года
echo $result->instrumental; // двадцать девятому июня две тысячи девятнадцатого года
use Morpher\Ukrainian\UkrainianClient;
$result = $morpher->ukrainian->declension('Карен', UkrainianClient::FLAG_FEMININE);
echo $result->genitive; // Карен (женское имя не склоняется)