对于给定的 Dbpedia 资源,我想获取它的 Rdfs: 标签。例如,从http://fr.dbpedia.org/resource/Automobile
,我应该得到Automobile
,
我尝试使用简单的 RDF:
$label= new \EasyRdf\Graph;
$re= $label->label('http://fr.dbpedia.org/resource/Automobile');
var_dump($re)
但它给了我 null 结果
我也尝试了这个 Sparql 请求,但它也给了我 null :
SELECT ?label WHERE
{
<http://fr.dbpedia.org/resource/Automobile> rdfs:label ?label.
}