本文整理汇总了PHP中EasyRdf_Graph::label方法的典型用法代码示例。如果您正苦于以下问题:PHP EasyRdf_Graph::label方法的具体用法?PHP EasyRdf_Graph::label怎么用?PHP EasyRdf_Graph::label使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EasyRdf_Graph
的用法示例。
在下文中一共展示了EasyRdf_Graph::label方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: label
/**
* Gets label of the resource.
*
* @param string $uri
* URI of the resource (eg: schema:Person).
*
* @return string
* Label of the resource, if not shortened name.
*/
public function label($uri) {
if (empty($uri)) {
drupal_set_message($this->t("Invalid uri"));
return NULL;
}
$label = $this->graph->label($uri);
if (!empty($label)) {
return $label->getValue();
}
$names = explode(":", $uri);
return $names[1];
}
示例2: testLabelForUnnamedGraph
public function testLabelForUnnamedGraph()
{
$graph = new EasyRdf_Graph();
$this->assertNull($graph->label());
}
示例3: join
$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> <?php
echo $graph->get("http://example.com/joe", "foaf:name");
?>
<br />
<b>Names:</b> <?php
echo $graph->join("http://example.com/joe", "foaf:name");
?>
<br />
<b>Label:</b> <?php
echo $graph->label("http://njh.me/");
?>
<br />
<b>Properties:</b> <?php
echo join(', ', $graph->properties("http://example.com/joe"));
?>
<br />
<b>PropertyUris:</b> <?php
echo join(', ', $graph->propertyUris("http://example.com/joe"));
?>
<br />
<b>People:</b> <?php
echo join(', ', $graph->allOfType('foaf:Person'));
?>
<br />
<b>Unknown:</b> <?php
示例4: testMagicGet
public function testMagicGet()
{
$data = readFixture('foaf.json');
$graph = new EasyRdf_Graph('http://www.example.com/joe/foaf.rdf', $data);
$this->assertStringEquals("Joe Bloggs' FOAF File", $graph->label());
$this->assertStringEquals("Joe Bloggs' FOAF File", $graph->getRdfs_label());
}