Created
May 20, 2014 08:20
-
-
Save indeyets/a1e5c9882c778dd60713 to your computer and use it in GitHub Desktop.
EasyRDF graph-merge example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require '../vendor/autoload.php'; | |
$graph1 = new EasyRdf_Graph(); | |
$graph1->addResource('http://example.org/1', 'dc:title', 'Hello, world!'); | |
$graph1->addResource('http://example.org/2', 'dc:description', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.'); | |
$graph2 = new EasyRdf_Graph(); | |
$graph2->addResource('http://example.org/1', 'dc:description', 'Some boring description'); | |
$graph2->addResource('http://example.org/2', 'dc:title', 'Hello, second world!'); | |
var_dump(mergeGraphs($graph1, $graph2)->toRdfPhp()); | |
/** | |
* @param EasyRdf_Graph $graph1 | |
* @param EasyRdf_Graph $graph2 | |
* | |
* @return EasyRdf_Graph | |
*/ | |
function mergeGraphs(EasyRdf_Graph $graph1, EasyRdf_Graph $graph2) | |
{ | |
$data1 = $graph1->toRdfPhp(); | |
$data2 = $graph2->toRdfPhp(); | |
$merged = array_merge_recursive($data1, $data2); | |
unset($data1, $data2); | |
return new EasyRdf_Graph('urn:easyrdf:merged', $merged, 'php'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't this this would correctly handle merging two graphs with blank nodes. I am assuming that we are NOT attempting to identify and collapse identical bnode subgraphs.