1.DTD official tutorial
##2.xml constraint technology:
DTD constraint: The syntax is relatively simple and the function is relatively simple.
Schema constraints appear first: the syntax is relatively complex and the functions are relatively powerful. Using a writing method similar to xml syntax, Schema constraints appear to replace DTD constraints.
3. Introduction to DTD:
Document Type Definition (DTD) can define legal XML document building blocks. It uses a series of legal elements to define the structure of the document. A DTD can be declared in an XML document as a line or as an external reference.
3.1 How to import DTD:
1. Internal import:
#导入方式: #实例: ]> Tove Jani Reminder Don't forget me this weekend
(第二行)定义此文档是 note(根标签) 类型的文档。
(第三行)定义 note 元素有四个元素(标签):"to、from、heading,、body"
(第四行)定义 to 元素为 "#PCDATA" 类型
(第五行)定义 frome 元素为 "#PCDATA" 类型
(第六行)定义 heading 元素为 "#PCDATA" 类型
(第七行)定义 body 元素为 "#PCDATA" 类型
外部导入方式:
本地文件:#导入方式: #note.dtd文件内容:
公共的外部导入:一般项目采用公共外部导入,比如ssh的xml文件基本上就是采用了这种方式
#导入方式: #如hibernate.cfg.xml:
3.2DTD语法:
1.约束标签
语法:类别:或
空标签: EMPTY。 表示元素一定是空元素.例如::
普通字符串: (#PCDATA)。表示元素的内容一定是普通字符串(不能含有子标签)。例如:
任何内容: ANY。表示元素的内容可以是任意内容(包括子标签) 例如:
Copy after login
Element content:
顺序问题: : 按顺序出现子标签 次数问题: 标签 : 必须且只出现1次。 标签+ : 至少出现1次 标签* : 0或n次。 标签? : 0 或1次。 声明"非.../既..."类型的内容
2. Constraint attributes:
Syntax:
Attribute type:
CDATA :表示普通字符串 (en1|en2|..): 表示一定是任选其中的一个值 ID:表示在一个xml文档中该属性值必须唯一。值不能以数字开头
Default value:
#REQUIRED 属性值是必需的 #IMPLIED 属性不是必需的 #FIXED value 属性不是必须的,但属性值是固定的
3.3 The test is as follows, please read the comments carefully:
]> Tove Jani Reminder Don't forget me this weekend
The above is the detailed content of Detailed explanation of DTD of XML constraint technology. For more information, please follow other related articles on the PHP Chinese website!