I have a script in php that sends a SPARQL query to DBpedia and it is returned to a variable named $result. Then it is followed by this: $results=$result->results->bindings; I had found a JavaScript example for sending a query to DBpedia but I cannot seem to find that again. So, I am using just php so far and I'm doing something wrong. Most of the code is in two php blocks.
I'd like to see if I could parse the data with JavaScript and JQuery or another JavaScript library. It would be helpful to be able to inspect the JSON data that is returned. When I get back my data, if I display it in a html table, I have the first two columns are repeated because the way that values get bound to the variables in the SELECT part of the query. I have 4 variables that I use in the SELECT query and the first 3 columns would have one value where the last column has multiple values. So, for the last column, I could display that table cell () as containing a list of values.
Unfortunately, I'm getting back values for just the first two columns of data and it is repeated. Could someone help me figure out what I am doing wrong and how to properly handle the json data that is returned. Maybe my code is not too far off in that the json is like a various nested arrays that one must navigate. Perhaps the JavaScript dot notation would be easier than using the Arrays as I have it setup. Please advise me. Here is the code below:
<?php
function sparqlQuery($query, $baseURL, $format="application/json") {
$params=array(
"default-graph" => "",
"should-sponge" => "soft",
"query" => $query,
"debug" => "on",
"timeout" => "",
"format" => $format,
"save" => "display",
"fname" => ""
);
$querypart="?";
foreach($params as $name => $value) {
$querypart=$querypart . $name . '=' . urlencode($value) . "&";
}
$sparqlURL=$baseURL . $querypart;
return json_decode(file_get_contents($sparqlURL));
};
$query=<<<EOQ
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX dbpedia-owl: <http://dbpedia.org/ontology/>
PREFIX dbprop: <http://dbpedia.org/property/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT DISTINCT ?poet ?poet_name ?surname ?poet_wiki_link
?abstract ?depiction
?artist_name
?artist_wiki_link
WHERE
{ ?poet dcterms:subject
<http://dbpedia.org/resource/Category:American_poets> ;
foaf:name ?poet_name ;
foaf:surname ?surname ;
foaf:depiction ?depiction ;
dbpedia-owl:abstract ?abstract ;
foaf:isPrimaryTopicOf ?poet_wiki_link .
OPTIONAL {
?artist dbpedia-owl:influencedBy ?poet ;
foaf:name ?artist_name ;
foaf:isPrimaryTopicOf ?artist_wiki_link .
}
FILTER ( lang(?abstract) = "en" )
} ORDER BY ASC(?surname)
LIMIT 4000
EOQ;
?>
[snip].... [some html tags are left off, such as the body, table, etc.
<?php
$result=sparqlQuery($query, 'http://dbpedia.org/sparql');
$results=$result->results->bindings;
//print_r($results);
$poetArray = array();
$artist1Array = array();
$i = 0;
$j = 0;
foreach($results as $res) {
if($res->poet_name->value != $poetArray[$i][name]) {
$poetArray[$i][name] = $res->poet_name->value;
$poetArray[$i][wiki_url] = $res->poet_wiki_link->value;
}
$poetArray[$i][poet_abstract] = $res->abstract->value;
$poetArray[$i][artist_name_list][$j][artist_name] = $res->artist_name->value;
$poetArray[$i][artist_name_list][$j][artist_wiki_link] =
$res->artist_wiki_link->value;
$poetArray[$i][depiction] = $res->depiction->value;
$i++;
$j++;
}
$cnt = count($poetArray);
for($m=0;$m<$cnt;$m++){
echo "<tr><td>";
echo "<a class='iframe' href='";
echo $poetArray[$m][wiki_url]."'>";
echo $poetArray[$m][name];
echo "</a>";
echo "</td>";
echo "<td>";
echo $poetArray[$m][poet_abstract];
echo "</td>";
echo "<td>";
echo "<img src='$poetArray[$m][depiction]' />";
echo "</td>";
echo "<td>";
echo "<ul><li>";
echo "<a class='iframe' href='";
echo $poetArray[$m][artist_name_list][0][artist_wiki_link]."'"."
title='$poetArray[$m][artist_name_list][0][artist_name]'";
echo ">";
echo $poetArray[$m][artist_name_list][0][artist_name];
echo "</a>";
echo "</li>";
echo "</ul>";
echo "</td>";
echo "</tr>";
}
?>
Thanks in advance for any help... Bruce