This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
forked from easyrdf/easyrdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph_direct.php
48 lines (41 loc) · 1.71 KB
/
graph_direct.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Using EasyRdf\Graph directly without EasyRdf\Resource
*
* Triple data is inserted and retrieved directly from a graph object,
* where it is stored internally as an associative array.
*
* @package EasyRdf
* @copyright Copyright (c) 2009-2014 Nicholas J Humfrey
* @license http://unlicense.org/
*/
require_once realpath(__DIR__.'/..')."/vendor/autoload.php";
?>
<html>
<head>
<title>Example of using EasyRdf\Graph directly</title>
</head>
<body>
<?php
$graph = new \EasyRdf\Graph();
$graph->addResource("http://example.com/joe", "rdf:type", "foaf:Person");
$graph->addLiteral("http://example.com/joe", "foaf:name", "Joe Bloggs");
$graph->addLiteral("http://example.com/joe", "foaf:name", "Joseph Bloggs");
$graph->add("http://example.com/joe", "rdfs:label", "Joe");
$graph->setType("http://njh.me/", "foaf:Person");
$graph->add("http://njh.me/", "rdfs:label", "Nick");
$graph->addLiteral("http://njh.me/", "foaf:name", "Nicholas Humfrey");
$graph->addResource("http://njh.me/", "foaf:homepage", "http://www.aelius.com/njh/");
?>
<p>
<b>Name:</b> <?= $graph->get("http://example.com/joe", "foaf:name") ?> <br />
<b>Names:</b> <?= $graph->join("http://example.com/joe", "foaf:name") ?> <br />
<b>Label:</b> <?= $graph->label("http://njh.me/") ?> <br />
<b>Properties:</b> <?= join(', ', $graph->properties("http://example.com/joe")) ?> <br />
<b>PropertyUris:</b> <?= join(', ', $graph->propertyUris("http://example.com/joe")) ?> <br />
<b>People:</b> <?= join(', ', $graph->allOfType('foaf:Person')) ?> <br />
<b>Unknown:</b> <?= $graph->get("http://example.com/joe", "unknown:property") ?> <br />
</p>
<?= $graph->dump() ?>
</body>
</html>