1. Go to this page and download the library: Download cuevae/collection-plus-json 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/ */
cuevae / collection-plus-json example snippets
$test = new \CollectionPlusJson\Collection('http://api.test.io');
echo json_encode($test->output());
//Build the collection object
$colors = new Collection('http://api.colors.io/');
//Add a Link to the collection object
$colors->addLink(new Link($colors->getHref()->extend('rss'), 'feed', 'rss-feed', '', 'Subscribe to our RSS feed!'));
//Build an item
$color1 = new Item($colors->getHref()->extend('color1'));
$color1->addData('id', '1', 'This is the color id.')
->addData('hex_value', '#9932CC', 'This is the color in hex format.');
// or add data with dynamic setter
$color1->setHuman_value('DarkOrchid', 'This is the color in human readable format.');
$color1->addLink(new Link('http://www.w3schools.com/tags/ref_colornames.asp', 'source'));
$color1->addLink(new Link('http://www.w3schools.com/tags/ref_color_tryit.asp?hex=9932CC', 'color-test'));
//Build a second item
$color2 = new Item($colors->getHref()->extend('color2'));
$color2->addData('id', '2', 'This is the color id.')
->addData('hex_value', '#FFFFF0', 'This is the color in hex format.');
// or add data with dynamic setter
$color2->setHuman_value('DarkOrchid', 'This is the color in human readable format.');
$color2->addLink(new Link('http://www.w3schools.com/tags/ref_colornames.asp', 'source'));
$color2->addLink(new Link('http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFF0', 'color-test'));
//Add both items
$colors->addItems([$color1, $color2]);
//Build a collection query
$query = new Query($colors->getHref()->extend('search'), 'search');
$query->addData('search');
$colors->addQuery($query);
//Set the collection template
$template = new Template();
$template->addData('id', 'This is the color id.')
->addData('hex_value', 'This is the color in hex format.')
->addData('human_value', 'This is the color in human readable format.')
->addData('color-test', 'Link to test how your color looks with other colors.');
// or add data with dynamic setter
$template->setSource('Link to colors source');
$colors->setTemplate($template);
//Set an error
$error = new Error('error-test', 'ABC123', 'This is a test error. Server has encountered a problem and could not process your request, please try later.');
$colors->setError($error);
//Send response
$app->response->headers->set('Content-Type', 'application/vnd.collection+json');
echo json_encode($colors->output());
/*
Output would be:
{
"collection": {
"version": "1.0.1",
"href": "http://api.colors.io/",
"links": [
{
"href": "http://api.colors.io/rss",
"rel": "feed",
"prompt": "Subscribe to our RSS feed!",
"name": "rss-feed",
"render": ""
}
],
"items": [
{
"href": "http://api.colors.io/color1",
"data": [
{
"name": "id",
"value": "1",
"prompt": "This is the color id."
},
{
"name": "hex_value",
"value": "#9932CC",
"prompt": "This is the color in hex format."
},
{
"name": "human_value",
"value": "DarkOrchid",
"prompt": "This is the color in human readable format."
}
],
"links": [
{
"href": "http://www.w3schools.com/tags/ref_colornames.asp",
"rel": "source",
"prompt": "",
"name": "",
"render": ""
},
{
"href": "http://www.w3schools.com/tags/ref_color_tryit.asp?hex=9932CC",
"rel": "color-test",
"prompt": "",
"name": "",
"render": ""
}
]
},
{
"href": "http://api.colors.io/color2",
"data": [
{
"name": "id",
"value": "2",
"prompt": "This is the color id."
},
{
"name": "hex_value",
"value": "#FFFFF0",
"prompt": "This is the color in hex format."
},
{
"name": "human_value",
"value": "Ivory",
"prompt": "This is the color in human readable format."
}
],
"links": [
{
"href": "http://www.w3schools.com/tags/ref_colornames.asp",
"rel": "source",
"prompt": "",
"name": "",
"render": ""
},
{
"href": "http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFF0",
"rel": "color-test",
"prompt": "",
"name": "",
"render": ""
}
]
}
],
"queries": [
{
"href": "http://api.colors.io/search",
"rel": "search",
"prompt": "",
"data": [
{
"name": "search",
"value": null,
"prompt": ""
}
]
}
],
"template": [
{
"name": "id",
"value": "",
"prompt": "This is the color id."
},
{
"name": "hex_value",
"value": "",
"prompt": "This is the color in hex format."
},
{
"name": "human_value",
"value": "",
"prompt": "This is the color in human readable format."
},
{
"name": "source",
"value": "",
"prompt": "Link to colors source."
},
{
"name": "color-test",
"value": "",
"prompt": "Link to test how your color looks with other colors."
}
],
"error": {
"title": "error-test",
"code": "ABC-123",
"message": "This is a test error. Server has encountered a problem and could not process your request, please try later."
}
}
}
*/
// init Collection object with json string to parse
$collection = new Collection(json_decode($collectionJson, true));
// get the first item
$item = $collection->getFirstItem();
// get a fake transfer object
$entity = new ExampleEntity();
// add the data with dynamic getters from item object
$entity->setFoo($item->getFoo());
$entity->setBar($item->getBar());
// save to example database
$repo->persist($entity);
$repo->flush();
// init Template object with json string to parse
$template = new Template(json_decode($collectionJsonTemplate, true));
// get a fake transfer object
$entity = new ExampleEntity();
// add the data with dynamic getters from template object
$entity->setFoo($template->getFoo());
$entity->setBar($template->getBar());
// save to example database
$repo->persist($entity);
$repo->flush();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.