martinmulder / internetnl-batchapi-php
Internet.nl batch API PHP
v0.11
2019-05-14 08:20 UTC
Requires
- php: >=5.3.3
- jms/serializer: ^0.16.0
Requires (Dev)
- phpunit/phpunit: ~4.0
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(); }