PHP code example of rolfisub / noun-project-php-client
1. Go to this page and download the library: Download rolfisub/noun-project-php-client 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/ */
rolfisub / noun-project-php-client example snippets
use MattyRad\NounProject;
$api = new NounProject\Client($key = 'abc123', $secret= 'xxxx');
$result = $api->send(new NounProject\Request\Icons($term = 'feather', $public_domain = true));
if (! $result->isSuccess()) {
throw new \Exception($result->getReason());
}
$icons = $result->getIcons();