<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hbll-collection-development / scopus-api example snippets
$affiliationSearch = new \Scopus\AffiliationSearch('API-KEY');
$results = $affiliationSearch
->query('AFFIL(Brigham Young University)')
->count(1)
->search();
$results = $affiliationSearch
->query('AFFIL(Brigham Young University)')
->count(1)
->httpAccept('application/xml')
->search();
$authorSearch = new \Scopus\AuthorSearch('API-KEY');
$results = $authorSearch
->query('AUTHLASTNAME(Howland) AND AUTHFIRST(J) AND AF-ID(60006832)')
->search();
$scopusSearch = new \Scopus\ScopusSearch('API-KEY');
$results = $scopusSearch
->query('TITLE(Tragedy of the Commons)')
->search();