PHP code example of gilek / ewus

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

    

gilek / ewus example snippets




use Gilek\Ewus\Client\Client;
use Gilek\Ewus\Client\Credentials;

$client = new Client(
    new Credentials('login', 'password', '15'),
);
$response = $client->checkCwu('NNNNNNNNNNN');
var_dump($response);
$client->logout();