PHP code example of amaccis / php-dict

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

    

amaccis / php-dict example snippets




use Amaccis\Dict\Client;
use Amaccis\Dict\Query\CommandInterface;

$client = new Client();
$parameters = [
    'command' => CommandInterface::COMMAND_DEFINE,
    'word' => 'hacker',
    'database' => 'jargon'
];
$response = $client->query('dict.org', $parameters);
var_dump($response);
/*
array(6) {
  [0] =>
  class Amaccis\Dict\Response\Response#358 (2) {
    private $code =>
    string(3) "220"
    private $text =>
    string(84) "dict dictd 1.12.1/rf on Linux 4.19.0-10-amd64 <auth.mime> <534.2367.1605732508@dict>"
  }
  [1] =>
  class Amaccis\Dict\Response\Response#357 (2) {
    private $code =>
    string(3) "250"
    private $text =>
    string(2) "ok"
  }
  [2] =>
  class Amaccis\Dict\Response\Response#356 (2) {
    private $code =>
    string(3) "150"
    private $text =>
    string(23) "1 definitions retrieved"
  }
  [3] =>
  class Amaccis\Dict\Response\Response#355 (2) {
    private $code =>
    string(3) "151"
    private $text =>
    string(2516) ""hacker" jargon "The Jargon File (version 4.4.7, 29 Dec 2003)"
hacker
 n.

    [originally, someone who makes furniture with an axe]

    1. A person who enjoys exploring the details of programmable systems and
    how to stretch their capabilities, as opposed to most users, who prefer to
    learn only the minimum necessary. RFC1392, the Internet Users' Glossary,
    usefully amplifies this as: A person who delights in having an intimate
    understanding of the internal workings of a system, com"...
  }
  [4] =>
  class Amaccis\Dict\Response\Response#354 (2) {
    private $code =>
    string(3) "250"
    private $text =>
    string(41) "ok [d/m/c = 1/0/10; 0.000r 0.000u 0.000s]"
  }
  [5] =>
  class Amaccis\Dict\Response\Response#353 (2) {
    private $code =>
    string(3) "221"
    private $text =>
    string(41) "bye [d/m/c = 0/0/0; 0.000r 0.000u 0.000s]"
  }
}
*/
shell
composer