martinmulder/internetnl-batchapi-php

v0.11 2019-05-14 08:20 UTC

This package is auto-updated.

Last update: 2025-03-28 01:35:35 UTC


README

This is a php client for communication with the Internet.NL batch API.

Usage

<?php
use \Doctrine\Common\Annotations\AnnotationRegistry;

$loader = require_once 'vendor/autoload.php';
AnnotationRegistry::registerLoader(array($loader, "loadClass"));

$api = new \MartinMulder\InternetNL\Api();

try {
  $web = $api->web("<name>", array('<domains>'));
  echo $web->getData()->getResults();
} catch (\MartinMulder\InternetNL\Exception\ApiException $e) {
  echo $e->getMessage() . ' @ ' . $e->getCall();
}