forked from easyrdf/easyrdf
-
Notifications
You must be signed in to change notification settings - Fork 6
/
serialise.php
65 lines (58 loc) · 1.78 KB
/
serialise.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* Basic serialisation example
*
* This example create a simple FOAF graph in memory and then
* serialises it to the page in the format of choice.
*
* @copyright Copyright (c) 2009-2014 Nicholas J Humfrey
* @license http://unlicense.org/
*/
require_once realpath(__DIR__.'/..').'/vendor/autoload.php';
$graph = new EasyRdf\Graph();
$me = $graph->resource('http://www.example.com/joe#me', 'foaf:Person');
$me->set('foaf:name', 'Joseph Bloggs');
$me->set('foaf:title', 'Mr');
$me->set('foaf:nick', 'Joe');
$me->add('foaf:homepage', $graph->resource('http://example.com/joe/'));
// I made these up; they are not officially part of FOAF
$me->set('foaf:dateOfBirth', new EasyRdf\Literal\Date('1980-09-08'));
$me->set('foaf:height', 1.82);
$project = $graph->newBnode('foaf:Project');
$project->set('foaf:name', "Joe's current project");
$me->set('foaf:currentProject', $project);
if (isset($_REQUEST['format'])) {
$format = preg_replace('/[^\w\-]+/', '', strtolower($_REQUEST['format']));
} else {
$format = 'ntriples';
}
?>
<html>
<head><title>EasyRdf Serialiser Example</title></head>
<body>
<h1>EasyRdf Serialiser Example</h1>
<ul>
<?php
foreach (EasyRdf\Format::getFormats() as $f) {
if ($f->getSerialiserClass()) {
if ($f->getName() == $format) {
echo '<li><b>'.$f->getLabel()."</b></li>\n";
} else {
echo "<li><a href='?format=$f'>";
echo $f->getLabel()."</a></li>\n";
}
}
}
?>
</ul>
<pre style="margin: 0.5em; padding:0.5em; background-color:#eee; border:dashed 1px grey;">
<?php
$data = $graph->serialise($format);
if (!is_scalar($data)) {
$data = var_export($data, true);
}
echo htmlspecialchars($data);
?>
</pre>
</body>
</html>