unikent/lib-php-kar

PHP的KAR API。

3.0.2 2016-05-24 12:01 UTC

This package is not auto-updated.

Last update: 2024-09-14 16:34:35 UTC


README

Latest Stable Version Build Status StyleCI

完整的API文档可在此处获取:http://unikent.github.io/lib-php-kar/

帮助开发者进行KAR集成的PHP库

将其添加到您的composer require中

  • "unikent/lib-php-kar": "dev-master"

然后获取类似列表

$api = new \unikent\KAR\API('https://kar-test.kent.ac.uk');
$documents = $api->search_author("person@kent.ac.uk");
foreach ($documents as $document) {
    echo "---------------------------------\n";
    echo $document;
}