PHP code example of emrebakkal / sozlukphp

1. Go to this page and download the library: Download emrebakkal/sozlukphp 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/ */

    

emrebakkal / sozlukphp example snippets




k = new SozlukPHP\Sozluk();

echo $sozluk->checkWord("programlama");
// Bool (True veya False) dondurur

echo $sozluk->word("programlama")->getMeaning();
// Ekrana, verilen kelimenin ilk anlamini (0 index'ini) yazdirir. Dilerseniz parametre olarak istediginiz anlamin index degerini girebilirsiniz. 

print_r($sozluk->word("programlama")->getMeanings());
// Ekrana, verilen kelimenin butun anlamlarini array tipinden yazdiracaktir.
 
echo $sozluk->word("programlama")->countMeanings();

echo $sozluk->word("programlama")->getExample();
// Ekrana, verilen kelimenin ilk ornegini (0 index'ini) yazdirir. Dilerseniz parametre olarak istediginiz ornegin index degerini girebilirsiniz. 
 
echo $sozluk->word("zafer")->getProverb();
// Ekrana, verilen kelimenin ilk atasozunu (0 index'ini) yazdirir. Dilerseniz parametre olarak istediginiz atasozunun index degerini girebilirsiniz. 
 
print_r($sozluk->word("fatih")->getProverbs());

echo $sozluk->word("ocak")->countProverbs();

echo $sozluk->word("programlama")->getWordNo();

echo $sozluk->word("kadir")->getAffix();

echo $sozluk->word("programlama)->isPlural();

echo $sozluk->word("araba")->getCompound();

echo $sozluk->word("ordu")->getPronunciation();