@@ -687,7 +687,7 @@ int dom_document_config_read(dom_object *obj, zval *retval)
687
687
688
688
/* }}} */
689
689
690
- /* {{{ proto DOMElement dom_document_create_element(string tagName [, string value]);
690
+ /* {{{ proto DOMElement dom_document_create_element(string tagName [, string value])
691
691
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-2141741547
692
692
Since:
693
693
*/
@@ -721,7 +721,7 @@ PHP_FUNCTION(dom_document_create_element)
721
721
}
722
722
/* }}} end dom_document_create_element */
723
723
724
- /* {{{ proto DOMDocumentFragment dom_document_create_document_fragment();
724
+ /* {{{ proto DOMDocumentFragment dom_document_create_document_fragment()
725
725
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-35CB04B5
726
726
Since:
727
727
*/
@@ -748,7 +748,7 @@ PHP_FUNCTION(dom_document_create_document_fragment)
748
748
}
749
749
/* }}} end dom_document_create_document_fragment */
750
750
751
- /* {{{ proto DOMText dom_document_create_text_node(string data);
751
+ /* {{{ proto DOMText dom_document_create_text_node(string data)
752
752
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1975348127
753
753
Since:
754
754
*/
@@ -777,7 +777,7 @@ PHP_FUNCTION(dom_document_create_text_node)
777
777
}
778
778
/* }}} end dom_document_create_text_node */
779
779
780
- /* {{{ proto DOMComment dom_document_create_comment(string data);
780
+ /* {{{ proto DOMComment dom_document_create_comment(string data)
781
781
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1334481328
782
782
Since:
783
783
*/
@@ -806,7 +806,7 @@ PHP_FUNCTION(dom_document_create_comment)
806
806
}
807
807
/* }}} end dom_document_create_comment */
808
808
809
- /* {{{ proto DOMCdataSection dom_document_create_cdatasection(string data);
809
+ /* {{{ proto DOMCdataSection dom_document_create_cdatasection(string data)
810
810
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D26C0AF8
811
811
Since:
812
812
*/
@@ -835,7 +835,7 @@ PHP_FUNCTION(dom_document_create_cdatasection)
835
835
}
836
836
/* }}} end dom_document_create_cdatasection */
837
837
838
- /* {{{ proto DOMProcessingInstruction dom_document_create_processing_instruction(string target, string data);
838
+ /* {{{ proto DOMProcessingInstruction dom_document_create_processing_instruction(string target, string data)
839
839
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-135944439
840
840
Since:
841
841
*/
@@ -871,7 +871,7 @@ PHP_FUNCTION(dom_document_create_processing_instruction)
871
871
}
872
872
/* }}} end dom_document_create_processing_instruction */
873
873
874
- /* {{{ proto DOMAttr dom_document_create_attribute(string name);
874
+ /* {{{ proto DOMAttr dom_document_create_attribute(string name)
875
875
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1084891198
876
876
Since:
877
877
*/
@@ -906,7 +906,7 @@ PHP_FUNCTION(dom_document_create_attribute)
906
906
}
907
907
/* }}} end dom_document_create_attribute */
908
908
909
- /* {{{ proto DOMEntityReference dom_document_create_entity_reference(string name);
909
+ /* {{{ proto DOMEntityReference dom_document_create_entity_reference(string name)
910
910
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-392B75AE
911
911
Since:
912
912
*/
@@ -940,7 +940,7 @@ PHP_FUNCTION(dom_document_create_entity_reference)
940
940
}
941
941
/* }}} end dom_document_create_entity_reference */
942
942
943
- /* {{{ proto DOMNodeList dom_document_get_elements_by_tag_name(string tagname);
943
+ /* {{{ proto DOMNodeList dom_document_get_elements_by_tag_name(string tagname)
944
944
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-A6C9094
945
945
Since:
946
946
*/
@@ -966,7 +966,7 @@ PHP_FUNCTION(dom_document_get_elements_by_tag_name)
966
966
}
967
967
/* }}} end dom_document_get_elements_by_tag_name */
968
968
969
- /* {{{ proto DOMNode dom_document_import_node(DOMNode importedNode, boolean deep);
969
+ /* {{{ proto DOMNode dom_document_import_node(DOMNode importedNode, boolean deep)
970
970
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Core-Document-importNode
971
971
Since: DOM Level 2
972
972
*/
@@ -1021,7 +1021,7 @@ PHP_FUNCTION(dom_document_import_node)
1021
1021
}
1022
1022
/* }}} end dom_document_import_node */
1023
1023
1024
- /* {{{ proto DOMElement dom_document_create_element_ns(string namespaceURI, string qualifiedName [,string value]);
1024
+ /* {{{ proto DOMElement dom_document_create_element_ns(string namespaceURI, string qualifiedName [,string value])
1025
1025
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-DocCrElNS
1026
1026
Since: DOM Level 2
1027
1027
*/
@@ -1085,7 +1085,7 @@ PHP_FUNCTION(dom_document_create_element_ns)
1085
1085
}
1086
1086
/* }}} end dom_document_create_element_ns */
1087
1087
1088
- /* {{{ proto DOMAttr dom_document_create_attribute_ns(string namespaceURI, string qualifiedName);
1088
+ /* {{{ proto DOMAttr dom_document_create_attribute_ns(string namespaceURI, string qualifiedName)
1089
1089
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-DocCrAttrNS
1090
1090
Since: DOM Level 2
1091
1091
*/
@@ -1151,7 +1151,7 @@ PHP_FUNCTION(dom_document_create_attribute_ns)
1151
1151
}
1152
1152
/* }}} end dom_document_create_attribute_ns */
1153
1153
1154
- /* {{{ proto DOMNodeList dom_document_get_elements_by_tag_name_ns(string namespaceURI, string localName);
1154
+ /* {{{ proto DOMNodeList dom_document_get_elements_by_tag_name_ns(string namespaceURI, string localName)
1155
1155
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-getElBTNNS
1156
1156
Since: DOM Level 2
1157
1157
*/
@@ -1178,7 +1178,7 @@ PHP_FUNCTION(dom_document_get_elements_by_tag_name_ns)
1178
1178
}
1179
1179
/* }}} end dom_document_get_elements_by_tag_name_ns */
1180
1180
1181
- /* {{{ proto DOMElement dom_document_get_element_by_id(string elementId);
1181
+ /* {{{ proto DOMElement dom_document_get_element_by_id(string elementId)
1182
1182
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-getElBId
1183
1183
Since: DOM Level 2
1184
1184
*/
@@ -1209,7 +1209,7 @@ PHP_FUNCTION(dom_document_get_element_by_id)
1209
1209
}
1210
1210
/* }}} end dom_document_get_element_by_id */
1211
1211
1212
- /* {{{ proto DOMNode dom_document_adopt_node(DOMNode source);
1212
+ /* {{{ proto DOMNode dom_document_adopt_node(DOMNode source)
1213
1213
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-adoptNode
1214
1214
Since: DOM Level 3
1215
1215
*/
@@ -1219,7 +1219,7 @@ PHP_FUNCTION(dom_document_adopt_node)
1219
1219
}
1220
1220
/* }}} end dom_document_adopt_node */
1221
1221
1222
- /* {{{ proto void dom_document_normalize_document();
1222
+ /* {{{ proto void dom_document_normalize_document()
1223
1223
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-normalizeDocument
1224
1224
Since: DOM Level 3
1225
1225
*/
@@ -1239,7 +1239,7 @@ PHP_FUNCTION(dom_document_normalize_document)
1239
1239
}
1240
1240
/* }}} end dom_document_normalize_document */
1241
1241
1242
- /* {{{ proto DOMNode dom_document_rename_node(node n, string namespaceURI, string qualifiedName);
1242
+ /* {{{ proto DOMNode dom_document_rename_node(node n, string namespaceURI, string qualifiedName)
1243
1243
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-renameNode
1244
1244
Since: DOM Level 3
1245
1245
*/
@@ -1528,7 +1528,7 @@ static void dom_parse_document(INTERNAL_FUNCTION_PARAMETERS, int mode) {
1528
1528
}
1529
1529
/* }}} end dom_parser_document */
1530
1530
1531
- /* {{{ proto DOMNode dom_document_load(string source [, int options]);
1531
+ /* {{{ proto DOMNode dom_document_load(string source [, int options])
1532
1532
URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-load
1533
1533
Since: DOM Level 3
1534
1534
*/
@@ -1538,7 +1538,7 @@ PHP_METHOD(domdocument, load)
1538
1538
}
1539
1539
/* }}} end dom_document_load */
1540
1540
1541
- /* {{{ proto DOMNode dom_document_loadxml(string source [, int options]);
1541
+ /* {{{ proto DOMNode dom_document_loadxml(string source [, int options])
1542
1542
URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-loadXML
1543
1543
Since: DOM Level 3
1544
1544
*/
@@ -1548,7 +1548,7 @@ PHP_METHOD(domdocument, loadXML)
1548
1548
}
1549
1549
/* }}} end dom_document_loadxml */
1550
1550
1551
- /* {{{ proto int dom_document_save(string file);
1551
+ /* {{{ proto int dom_document_save(string file)
1552
1552
Convenience method to save to file
1553
1553
*/
1554
1554
PHP_FUNCTION (dom_document_save )
@@ -1592,7 +1592,7 @@ PHP_FUNCTION(dom_document_save)
1592
1592
}
1593
1593
/* }}} end dom_document_save */
1594
1594
1595
- /* {{{ proto string dom_document_savexml([node n]);
1595
+ /* {{{ proto string dom_document_savexml([node n])
1596
1596
URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-saveXML
1597
1597
Since: DOM Level 3
1598
1598
*/
@@ -1744,7 +1744,7 @@ PHP_FUNCTION(dom_document_xinclude)
1744
1744
}
1745
1745
/* }}} */
1746
1746
1747
- /* {{{ proto boolean dom_document_validate();
1747
+ /* {{{ proto boolean dom_document_validate()
1748
1748
Since: DOM extended
1749
1749
*/
1750
1750
PHP_FUNCTION (dom_document_validate )
@@ -2062,7 +2062,7 @@ static void dom_load_html(INTERNAL_FUNCTION_PARAMETERS, int mode) /* {{{ */
2062
2062
}
2063
2063
/* }}} */
2064
2064
2065
- /* {{{ proto DOMNode dom_document_load_html_file(string source);
2065
+ /* {{{ proto DOMNode dom_document_load_html_file(string source)
2066
2066
Since: DOM extended
2067
2067
*/
2068
2068
PHP_METHOD (domdocument , loadHTMLFile )
@@ -2071,7 +2071,7 @@ PHP_METHOD(domdocument, loadHTMLFile)
2071
2071
}
2072
2072
/* }}} end dom_document_load_html_file */
2073
2073
2074
- /* {{{ proto DOMNode dom_document_load_html(string source);
2074
+ /* {{{ proto DOMNode dom_document_load_html(string source)
2075
2075
Since: DOM extended
2076
2076
*/
2077
2077
PHP_METHOD (domdocument , loadHTML )
@@ -2080,7 +2080,7 @@ PHP_METHOD(domdocument, loadHTML)
2080
2080
}
2081
2081
/* }}} end dom_document_load_html */
2082
2082
2083
- /* {{{ proto int dom_document_save_html_file(string file);
2083
+ /* {{{ proto int dom_document_save_html_file(string file)
2084
2084
Convenience method to save to file as html
2085
2085
*/
2086
2086
PHP_FUNCTION (dom_document_save_html_file )
@@ -2119,7 +2119,7 @@ PHP_FUNCTION(dom_document_save_html_file)
2119
2119
}
2120
2120
/* }}} end dom_document_save_html_file */
2121
2121
2122
- /* {{{ proto string dom_document_save_html();
2122
+ /* {{{ proto string dom_document_save_html()
2123
2123
Convenience method to output as html
2124
2124
*/
2125
2125
PHP_FUNCTION (dom_document_save_html )
@@ -2206,7 +2206,7 @@ PHP_FUNCTION(dom_document_save_html)
2206
2206
2207
2207
#endif /* defined(LIBXML_HTML_ENABLED) */
2208
2208
2209
- /* {{{ proto boolean DOMDocument::registerNodeClass(string baseclass, string extendedclass);
2209
+ /* {{{ proto boolean DOMDocument::registerNodeClass(string baseclass, string extendedclass)
2210
2210
Register extended class used to create base node type */
2211
2211
PHP_METHOD (domdocument , registerNodeClass )
2212
2212
{
0 commit comments