RDF快速入門教程login
RDF快速入門教程
作者:php.cn  更新時間:2022-04-11 14:47:18

RDF 集合



RDF 集合用於描述僅包含指定成員的群組。


rdf:parseType="Collection" 屬性

如前面的章節所看到的,我們無法關閉一個容器。容器規定了所包含的資源為成員 - 它沒有規定其他的成員是不被允許的。

RDF 集合用於描述僅包含指定成員的群組。

集合是透過屬性 rdf:parseType="Collection" 來描述的。

實例

<?xml version="1.0"?>

<rdf:RDF
xmlns:rdf="http:/ /www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cd="http://recshop.fake/cd#">

#<rdf :Description
rdf:about="http://recshop.fake/cd/Beatles">
  <cd:artist rdf:parseType="Collection">
    <rdf:Description  rdf:about="http://recshop.fake/cd/Beatles/George"/>
    <rdf:Description rdf:about="http://recshop.fake/cd/Beatles/John"/>
    <rdf:Description rdf:about="http://recshop.fake/cd/Beatles/Paul"/>
    <rdf:Description rdf:about="http://recshop.fake/cd/Beatles/Ringo"/>
  </cd:artist>
</rdf:Description>

#</rdf:RDF>

PHP中文網