PHP code example of lubosdz / parser-justice-cz
1. Go to this page and download the library: Download lubosdz/parser-justice-cz 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/ */
lubosdz / parser-justice-cz example snippets
// inicializacia API objektu
$connector = new \lubosdz\parserJusticeCz\ConnectorJusticeCz();
// vyhľadanie zoznamu subjektov podľa mena/názvu/IČO:
$list = $connector->findByNazev('auto');
$list = $connector->findByNazev('Jan Novák');
$list = $connector->findForAutocomplete('Jan Novák');
$list = $connector->findByIco('44315945');
// vyhľadanie detailu subjektu podľa IČO:
$detail = $connector->getDetailByICO('44315945');