dev-master
9999999-devA Class for Getting Synonym or Antonym of word from Indonesian Language
MIT
The Requires
by Satria Aji Putra Karma Jaya
antonim sinonim antonim indonesia sinonim indonesia
A Class for Getting Synonym or Antonym of word from Indonesian Language
A Package for Getting Synonym or Antonym of word from Indonesian Language, (*1)
I am using curl to get the dictionary data from http://www.sinonimkata.com, (*2)
For installing this package, you can install using composer quickly with command, (*3)
composer require "satria/synonym-antonym-indonesia":"dev-master"
Easy to use this package, you just include the autoload.php
file to your .php
file like this, (*4)
<?php require_once "vendor/autoload.php";
After that, you can use the package by following this code, (*5)
<?php use SynonymAntonym\Dictionary $init = new Dictionary; $results = $init->word('satria')->synonym();
<?php $init = new AntonymSynonym\Dictionary; // success $init->word('anggota')->synonym(); // fail $init->word('mamam')->synonym();
Array ( [status] => Array ( [code] => 200 [description] => OK ) [title] => Sinonim [data] => Array ( [0] => ahli [1] => anak buah [4] => bagian ... ) )
Array ( [status] => Array ( [code] => 400 [description] => Data untuk kata mamam tidak ditemukan ) )
I am develop this package with some method that can use for your project application, (*6)
Methods | Description |
---|---|
$init->antonym() |
For getting the antonym data |
$init->synonym() |
For getting the synonym data |
$init->all() |
Get all data (antonym and synonym) |
A Class for Getting Synonym or Antonym of word from Indonesian Language
MIT
antonim sinonim antonim indonesia sinonim indonesia