PHP code example of goosfraba / teryt-sdk
1. Go to this page and download the library: Download goosfraba/teryt-sdk 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/ */
goosfraba / teryt-sdk example snippets
use Goosfraba\Teryt\Soap\TerytApiFactory;
use Goosfraba\Teryt\Soap\Dsn;
$factory = new TerytApiFactory();
$dsn = Dsn::prod("your-user", "your-pass");
// or
$dsn = Dsn::test(); // public test credentials
// or
$dsn = Dsn::parse("gus+teryt://your-user:your-pass@prod"); // your production credentials
$api = $factory->create($dsn);
use Goosfraba\Teryt\TerytApi;
/** @var TerytApi $api */
$catalogFile = $api->PobierzKatalogSIMCAdr(); // downloads the SIMC catalogue in address version
$fileObject = $catalogFile->dump(); // Dumps the catalogue content into a file \SplFileObject