forked from JetBrains/phpstorm-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dom_c.php
2189 lines (1931 loc) · 65.7 KB
/
dom_c.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
//20120405 AG synced to official docs
/**
* The DOMNode class
* @link http://php.net/manual/en/class.domnode.php
*/
class DOMNode {
/**
* @var string
* @since 5.0
* Returns the most accurate name for the current node type
* @link http://php.net/manual/en/class.domnode.php#domnode.props.nodename
*/
public $nodeName;
/**
* @var string
* @since 5.0
* The value of this node, depending on its type
* @link http://php.net/manual/en/class.domnode.php#domnode.props.nodevalue
*/
public $nodeValue;
/**
* @var int
* @since 5.0
* Gets the type of the node. One of the predefined
* <a href="http://www.php.net/manual/en/dom.constants.php">XML_xxx_NODE</a> constants
* @link http://php.net/manual/en/class.domnode.php#domnode.props.nodetype
*/
public $nodeType;
/**
* @var DOMNode
* @since 5.0
* The parent of this node
* @link http://php.net/manual/en/class.domnode.php#domnode.props.parentnode
*/
public $parentNode;
/**
* @var DOMNodeList
* @since 5.0
* A <classname>DOMNodeList</classname> that contains all children of this node. If there are no children, this is an empty <classname>DOMNodeList</classname>.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.childnodes
*/
public $childNodes;
/**
* @var DOMNode
* @since 5.0
* The first child of this node. If there is no such node, this returns NULL.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.firstchild
*/
public $firstChild;
/**
* @var DOMNode
* @since 5.0
* The last child of this node. If there is no such node, this returns NULL.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.lastchild
*/
public $lastChild;
/**
* @var DOMNode
* @since 5.0
* The node immediately preceding this node. If there is no such node, this returns NULL.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.previoussibling
*/
public $previousSibling;
/**
* @var DOMNode
* @since 5.0
* The node immediately following this node. If there is no such node, this returns NULL.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.nextsibling
*/
public $nextSibling;
/**
* @var DOMNamedNodeMap
* @since 5.0
* A <classname>DOMNamedNodeMap</classname> containing the attributes of this node (if it is a <classname>DOMElement</classname>) or NULL otherwise.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.attributes
*/
public $attributes;
/**
* @var DOMDocument
* @since 5.0
* The <classname>DOMDocument</classname> object associated with this node.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.ownerdocument
*/
public $ownerDocument;
/**
* @var string
* @since 5.0
* The namespace URI of this node, or NULL if it is unspecified.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.namespaceuri
*/
public $namespaceURI;
/**
* @var string
* @since 5.0
* The namespace prefix of this node, or NULL if it is unspecified.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.prefix
*/
public $prefix;
/**
* @var string
* @since 5.0
* Returns the local part of the qualified name of this node.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.localname
*/
public $localName;
/**
* @var string
* @since 5.0
* The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.baseuri
*/
public $baseURI;
/**
* @var string
* @since 5.0
* This attribute returns the text content of this node and its descendants.
* @link http://php.net/manual/en/class.domnode.php#domnode.props.textcontent
*/
public $textContent;
/**
* Adds a new child before a reference node
* @link http://php.net/manual/en/domnode.insertbefore.php
* @param DOMNode $newnode <p>
* The new node.
* </p>
* @param DOMNode $refnode [optional] <p>
* The reference node. If not supplied, newnode is
* appended to the children.
* </p>
* @return DOMNode The inserted node.
* @since 5.0
*/
public function insertBefore (DOMNode $newnode, DOMNode $refnode = null) {}
/**
* Replaces a child
* @link http://php.net/manual/en/domnode.replacechild.php
* @param DOMNode $newnode <p>
* The new node. It must be a member of the target document, i.e.
* created by one of the DOMDocument->createXXX() methods or imported in
* the document by .
* </p>
* @param DOMNode $oldnode <p>
* The old node.
* </p>
* @return DOMNode The old node or false if an error occur.
* @since 5.0
*/
public function replaceChild (DOMNode $newnode , DOMNode $oldnode ) {}
/**
* Removes child from list of children
* @link http://php.net/manual/en/domnode.removechild.php
* @param DOMNode $oldnode <p>
* The removed child.
* </p>
* @return DOMNode If the child could be removed the functions returns the old child.
* @since 5.0
*/
public function removeChild (DOMNode $oldnode ) {}
/**
* Adds new child at the end of the children
* @link http://php.net/manual/en/domnode.appendchild.php
* @param DOMNode $newnode <p>
* The appended child.
* </p>
* @return DOMNode The node added.
* @since 5.0
*/
public function appendChild (DOMNode $newnode ) {}
/**
* Checks if node has children
* @link http://php.net/manual/en/domnode.haschildnodes.php
* @return bool true on success or false on failure.
* @since 5.0
*/
public function hasChildNodes () {}
/**
* Clones a node
* @link http://php.net/manual/en/domnode.clonenode.php
* @param bool $deep [optional] <p>
* Indicates whether to copy all descendant nodes. This parameter is
* defaulted to false.
* </p>
* @return DOMNode The cloned node.
* @since 5.0
*/
public function cloneNode ($deep = null) {}
/**
* Normalizes the node
* @link http://php.net/manual/en/domnode.normalize.php
* @return void
* @since 5.0
*/
public function normalize () {}
/**
* Checks if feature is supported for specified version
* @link http://php.net/manual/en/domnode.issupported.php
* @param string $feature <p>
* The feature to test. See the example of
* DOMImplementation::hasFeature for a
* list of features.
* </p>
* @param string $version <p>
* The version number of the feature to test.
* </p>
* @return bool true on success or false on failure.
* @since 5.0
*/
public function isSupported ($feature, $version) {}
/**
* Checks if node has attributes
* @link http://php.net/manual/en/domnode.hasattributes.php
* @return bool true on success or false on failure.
* @since 5.0
*/
public function hasAttributes () {}
/**
* @param DOMNode $other
*/
public function compareDocumentPosition (DOMNode $other) {}
/**
* Indicates if two nodes are the same node
* @link http://php.net/manual/en/domnode.issamenode.php
* @param DOMNode $node <p>
* The compared node.
* </p>
* @return bool true on success or false on failure.
* @since 5.0
*/
public function isSameNode (DOMNode $node ) {}
/**
* Gets the namespace prefix of the node based on the namespace URI
* @link http://php.net/manual/en/domnode.lookupprefix.php
* @param string $namespaceURI <p>
* The namespace URI.
* </p>
* @return string The prefix of the namespace.
* @since 5.0
*/
public function lookupPrefix ($namespaceURI) {}
/**
* Checks if the specified namespaceURI is the default namespace or not
* @link http://php.net/manual/en/domnode.isdefaultnamespace.php
* @param string $namespaceURI <p>
* The namespace URI to look for.
* </p>
* @return bool Return true if namespaceURI is the default
* namespace, false otherwise.
* @since 5.0
*/
public function isDefaultNamespace ($namespaceURI) {}
/**
* Gets the namespace URI of the node based on the prefix
* @link http://php.net/manual/en/domnode.lookupnamespaceuri.php
* @param string $prefix <p>
* The prefix of the namespace.
* </p>
* @return string The namespace URI of the node.
* @since 5.0
*/
public function lookupNamespaceUri ($prefix) {}
/**
* @param DOMNode $arg
* @return boolean
*/
public function isEqualNode (DOMNode $arg) {}
/**
* @param $feature
* @param $version
* @return mixed
*/
public function getFeature ($feature, $version) {}
/**
* @param $key
* @param $data
* @param $handler
*/
public function setUserData ($key, $data, $handler) {}
/**
* @param $key
* @return mixed
*/
public function getUserData ($key) {}
/**
* Gets an XPath location path for the node
* @return string the XPath, or NULL in case of an error.
* @link http://www.php.net/manual/en/domnode.getnodepath.php
* @since 5.3.0
*/
public function getNodePath () {}
/**
* Get line number for a node
* @link http://php.net/manual/en/domnode.getlineno.php
* @return int Always returns the line number where the node was defined in.
* @since 5.3.0
*/
public function getLineNo () {}
/**
* Canonicalize nodes to a string
* @param bool $exclusive [optional] Enable exclusive parsing of only the nodes matched by the provided xpath or namespace prefixes.
* @param bool $with_comments [optional] Retain comments in output.
* @param array $xpath [optional] An array of xpaths to filter the nodes by.
* @param array $ns_prefixes [optional] An array of namespace prefixes to filter the nodes by.
* @return string canonicalized nodes as a string or FALSE on failure
*/
public function C14N ($exclusive, $with_comments, array $xpath = null, $ns_prefixes = null) {}
/**
* Canonicalize nodes to a file.
* @param $uri Number of bytes written or FALSE on failure
* @param $exclusive [optional] Enable exclusive parsing of only the nodes matched by the provided xpath or namespace prefixes.
* @param $with_comments [optional] Retain comments in output.
* @param $xpath [optional] An array of xpaths to filter the nodes by.
* @param $ns_prefixes [optional] An array of namespace prefixes to filter the nodes by.
* @return int Number of bytes written or FALSE on failure
*/
public function C14NFile ($uri, $exclusive, array $with_comments, array $xpath = null, $ns_prefixes = null) {}
}
/**
* DOM operations raise exceptions under particular circumstances, i.e.,
* when an operation is impossible to perform for logical reasons.
* @link http://php.net/manual/en/class.domexception.php
*/
class DOMException extends Exception {
/**
* @since 5.0
* An integer indicating the type of error generated
* @link http://php.net/manual/en/class.domexception.php#domexception.props.code
*/
public $code;
}
class DOMStringList {
/**
* @param $index
* @return mixed
*/
public function item ($index) {}
}
/**
* @link http://php.net/manual/en/ref.dom.php
*/
class DOMNameList {
/**
* @param $index
* @return mixed
*/
public function getName ($index) {}
/**
* @param $index
* @return mixed
*/
public function getNamespaceURI ($index) {}
}
class DOMImplementationList {
/**
* @param $index
* @return mixed
*/
public function item ($index) {}
}
class DOMImplementationSource {
/**
* @param $features
* @return mixed
*/
public function getDomimplementation ($features) {}
/**
* @param $features
* @return mixed
*/
public function getDomimplementations ($features) {}
}
/**
* The DOMImplementation interface provides a number
* of methods for performing operations that are independent of any
* particular instance of the document object model.
* @link http://php.net/manual/en/class.domimplementation.php
*/
class DOMImplementation {
/**
* Creates a new DOMImplementation object
* @link http://http://php.net/manual/en/domimplementation.construct.php
* @since 5.0
*/
public function __construct(){}
/**
* @param $feature
* @param $version
* @return mixed
*/
public function getFeature ($feature, $version) {}
/**
* Test if the DOM implementation implements a specific feature
* @link http://php.net/manual/en/domimplementation.hasfeature.php
* @param string $feature <p>
* The feature to test.
* </p>
* @param string $version <p>
* The version number of the feature to test. In
* level 2, this can be either 2.0 or
* 1.0.
* </p>
* @return bool true on success or false on failure.
* @since 5.0
*/
public function hasFeature ($feature, $version) {}
/**
* Creates an empty DOMDocumentType object
* @link http://php.net/manual/en/domimplementation.createdocumenttype.php
* @param string $qualifiedName [optional] <p>
* The qualified name of the document type to create.
* </p>
* @param string $publicId [optional] <p>
* The external subset public identifier.
* </p>
* @param string $systemId [optional] <p>
* The external subset system identifier.
* </p>
* @return DOMDocumentType A new DOMDocumentType node with its
* ownerDocument set to &null;.
* @since 5.0
*/
public function createDocumentType ($qualifiedName = null, $publicId = null, $systemId = null) {}
/**
* Creates a DOMDocument object of the specified type with its document element
* @link http://php.net/manual/en/domimplementation.createdocument.php
* @param string $namespaceURI [optional] <p>
* The namespace URI of the document element to create.
* </p>
* @param string $qualifiedName [optional] <p>
* The qualified name of the document element to create.
* </p>
* @param DOMDocumentType $doctype [optional] <p>
* The type of document to create or &null;.
* </p>
* @return DOMDocument A new DOMDocument object. If
* namespaceURI, qualifiedName,
* and doctype are null, the returned
* DOMDocument is empty with no document element
* @since 5.0
*/
public function createDocument ($namespaceURI = null, $qualifiedName = null, DOMDocumentType $doctype = null) {}
}
class DOMNameSpaceNode {
}
/**
* The DOMDocumentFragment class
* @link http://php.net/manual/en/class.domdocumentfragment.php
*/
class DOMDocumentFragment extends DOMNode {
public function __construct () {}
/**
* Append raw XML data
* @link http://php.net/manual/en/domdocumentfragment.appendxml.php
* @param string $data <p>
* XML to append.
* </p>
* @return bool true on success or false on failure.
* @since 5.1.0
*/
public function appendXML ($data) {}
}
/**
* The DOMDocument class represents an entire HTML or XML
* document; serves as the root of the document tree.
* @link http://php.net/manual/class.domdocument.php
*/
class DOMDocument extends DOMNode {
/**
* @var string
* @since 5.0
* Deprecated. Actual encoding of the document, is a readonly equivalent to encoding.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.actualencoding
* @deprecated
*/
public $actualEncoding;
/**
* @var DOMConfiguration
* @since 5.0
* Deprecated. Configuration used when {@link DOMDocument::normalizeDocument()} is invoked.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.config
* @deprecated
*/
public $config;
/**
* @var DOMDocumentType
* @since 5.0
* The Document Type Declaration associated with this document.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.doctype
*/
public $doctype;
/**
* @var DOMElement
* @since 5.0
* This is a convenience attribute that allows direct access to the child node
* that is the document element of the document.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.documentelement
*/
public $documentElement;
/**
* @var string
* @since 5.0
* The location of the document or NULL if undefined.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.documenturi
*/
public $documentURI ;
/**
* @var string
* @since 5.0
* Encoding of the document, as specified by the XML declaration. This attribute is not present
* in the final DOM Level 3 specification, but is the only way of manipulating XML document
* encoding in this implementation.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.encoding
*/
public $encoding ;
/**
* @var bool
* @since 5.0
* Nicely formats output with indentation and extra space.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.formatoutput
*/
public $formatOutput ;
/**
* @var DOMImplementation
* @since 5.0
* The <classname>DOMImplementation</classname> object that handles this document.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.implementation
*/
public $implementation ;
/**
* @var bool
* @since 5.0
* Do not remove redundant white space. Default to TRUE.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.preservewhitespace
*/
public $preserveWhiteSpace = true ;
/**
* @var bool
* @since 5.0
* Proprietary. Enables recovery mode, i.e. trying to parse non-well formed documents.
* This attribute is not part of the DOM specification and is specific to libxml.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.recover
*/
public $recover ;
/**
* @var bool
* @since 5.0
* Set it to TRUE to load external entities from a doctype declaration. This is useful for
* including character entities in your XML document.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.resolveexternals
*/
public $resolveExternals ;
/**
* @var bool
* @since 5.0
* Deprecated. Whether or not the document is standalone, as specified by the XML declaration,
* corresponds to xmlStandalone.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.standalone
* @deprecated
*/
public $standalone ;
/**
* @var bool
* @since 5.0
* Throws <classname>DOMException</classname> on errors. Default to TRUE.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.stricterrorchecking
*/
public $strictErrorChecking = true ;
/**
* @var bool
* @since 5.0
* Proprietary. Whether or not to substitute entities. This attribute is not part of the DOM
* specification and is specific to libxml.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.substituteentities
*/
public $substituteEntities ;
/**
* @var bool
* @since 5.0
* Loads and validates against the DTD. Default to FALSE.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.validateonparse
*/
public $validateOnParse = false ;
/**
* @var string
* @since 5.0
* Deprecated. Version of XML, corresponds to xmlVersion
* @link http://php.net/manual/class.domdocument.php#domdocument.props.version
*/
public $version ;
/**
* @var string
* @since 5.0
* An attribute specifying, as part of the XML declaration, the encoding of this document. This is NULL when
* unspecified or when it is not known, such as when the Document was created in memory.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.xmlencoding
*/
public $xmlEncoding ;
/**
* @var bool
* @since 5.0
* An attribute specifying, as part of the XML declaration, whether this document is standalone.
* This is FALSE when unspecified.
* @link http://php.net/manual/class.domdocument.php#domdocument.props.xmlstandalone
*/
public $xmlStandalone ;
/**
* @var string
* @since 5.0
* An attribute specifying, as part of the XML declaration, the version number of this document. If there is no
* declaration and if this document supports the "XML" feature, the value is "1.0".
* @link http://php.net/manual/class.domdocument.php#domdocument.props.xmlversion
*/
public $xmlVersion ;
/**
* Create new element node
* @link http://php.net/manual/domdocument.createelement.php
* @param string $name <p>
* The tag name of the element.
* </p>
* @param string $value [optional] <p>
* The value of the element. By default, an empty element will be created.
* You can also set the value later with DOMElement->nodeValue.
* </p>
* @return DOMElement a new instance of class DOMElement or false
* if an error occured.
* @since 5.0
*/
public function createElement ($name, $value = null) {}
/**
* Create new document fragment
* @link http://php.net/manual/domdocument.createdocumentfragment.php
* @return DOMDocumentFragment The new DOMDocumentFragment or false if an error occured.
* @since 5.0
*/
public function createDocumentFragment () {}
/**
* Create new text node
* @link http://php.net/manual/domdocument.createtextnode.php
* @param string $content <p>
* The content of the text.
* </p>
* @return DOMText The new DOMText or false if an error occured.
* @since 5.0
*/
public function createTextNode ($content) {}
/**
* Create new comment node
* @link http://php.net/manual/domdocument.createcomment.php
* @param string $data <p>
* The content of the comment.
* </p>
* @return DOMComment The new DOMComment or false if an error occured.
* @since 5.0
*/
public function createComment ($data) {}
/**
* Create new cdata node
* @link http://php.net/manual/domdocument.createcdatasection.php
* @param string $data <p>
* The content of the cdata.
* </p>
* @return DOMCDATASection The new DOMCDATASection or false if an error occured.
* @since 5.0
*/
public function createCDATASection ($data) {}
/**
* Creates new PI node
* @link http://php.net/manual/domdocument.createprocessinginstruction.php
* @param string $target <p>
* The target of the processing instruction.
* </p>
* @param string $data [optional] <p>
* The content of the processing instruction.
* </p>
* @return DOMProcessingInstruction The new DOMProcessingInstruction or false if an error occured.
* @since 5.0
*/
public function createProcessingInstruction ($target, $data = null) {}
/**
* Create new attribute
* @link http://php.net/manual/domdocument.createattribute.php
* @param string $name <p>
* The name of the attribute.
* </p>
* @return DOMAttr The new DOMAttr or false if an error occured.
* @since 5.0
*/
public function createAttribute ($name) {}
/**
* Create new entity reference node
* @link http://php.net/manual/domdocument.createentityreference.php
* @param string $name <p>
* The content of the entity reference, e.g. the entity reference minus
* the leading & and the trailing
* ; characters.
* </p>
* @return DOMEntityReference The new DOMEntityReference or false if an error
* occured.
* @since 5.0
*/
public function createEntityReference ($name) {}
/**
* Searches for all elements with given tag name
* @link http://php.net/manual/domdocument.getelementsbytagname.php
* @param string $name <p>
* The name of the tag to match on. The special value *
* matches all tags.
* </p>
* @return DOMNodeList A new DOMNodeList object containing all the matched
* elements.
* @since 5.0
*/
public function getElementsByTagName ($name) {}
/**
* Import node into current document
* @link http://php.net/manual/domdocument.importnode.php
* @param DOMNode $importedNode <p>
* The node to import.
* </p>
* @param bool $deep [optional] <p>
* If set to true, this method will recursively import the subtree under
* the importedNode.
* </p>
* <p>
* To copy the nodes attributes deep needs to be set to true
* </p>
* @return DOMNode The copied node or false, if it cannot be copied.
* @since 5.0
*/
public function importNode (DOMNode $importedNode , $deep = null) {}
/**
* Create new element node with an associated namespace
* @link http://php.net/manual/domdocument.createelementns.php
* @param string $namespaceURI <p>
* The URI of the namespace.
* </p>
* @param string $qualifiedName <p>
* The qualified name of the element, as prefix:tagname.
* </p>
* @param string $value [optional] <p>
* The value of the element. By default, an empty element will be created.
* You can also set the value later with DOMElement->nodeValue.
* </p>
* @return DOMElement The new DOMElement or false if an error occured.
* @since 5.0
*/
public function createElementNS ($namespaceURI, $qualifiedName, $value = null) {}
/**
* Create new attribute node with an associated namespace
* @link http://php.net/manual/domdocument.createattributens.php
* @param string $namespaceURI <p>
* The URI of the namespace.
* </p>
* @param string $qualifiedName <p>
* The tag name and prefix of the attribute, as prefix:tagname.
* </p>
* @return DOMAttr The new DOMAttr or false if an error occured.
* @since 5.0
*/
public function createAttributeNS ($namespaceURI, $qualifiedName) {}
/**
* Searches for all elements with given tag name in specified namespace
* @link http://php.net/manual/domdocument.getelementsbytagnamens.php
* @param string $namespaceURI <p>
* The namespace URI of the elements to match on.
* The special value * matches all namespaces.
* </p>
* @param string $localName <p>
* The local name of the elements to match on.
* The special value * matches all local names.
* </p>
* @return DOMNodeList A new DOMNodeList object containing all the matched
* elements.
* @since 5.0
*/
public function getElementsByTagNameNS ($namespaceURI, $localName) {}
/**
* Searches for an element with a certain id
* @link http://php.net/manual/domdocument.getelementbyid.php
* @param string $elementId <p>
* The unique id value for an element.
* </p>
* @return DOMElement the DOMElement or &null; if the element is
* not found.
* @since 5.0
*/
public function getElementById ($elementId) {}
/**
* @param DOMNode $source
*/
public function adoptNode (DOMNode $source) {}
/**
* Normalizes the document
* @link http://php.net/manual/domdocument.normalizedocument.php
* @return void
* @since 5.0
*/
public function normalizeDocument () {}
/**
* @param DOMNode $node
* @param $namespaceURI
* @param $qualifiedName
*/
public function renameNode (DOMNode $node, $namespaceURI, $qualifiedName) {}
/**
* Load XML from a file
* @link http://php.net/manual/domdocument.load.php
* @param string $filename <p>
* The path to the XML document.
* </p>
* @param int $options [optional] <p>
* Bitwise OR
* of the libxml option constants.
* </p>
* @return mixed true on success or false on failure. If called statically, returns a
* DOMDocument and issues E_STRICT
* warning.
* @since 5.0
*/
public function load ($filename, $options = null) {}
/**
* Dumps the internal XML tree back into a file
* @link http://php.net/manual/domdocument.save.php
* @param string $filename <p>
* The path to the saved XML document.
* </p>
* @param int $options [optional] <p>
* Additional Options. Currently only LIBXML_NOEMPTYTAG is supported.
* </p>
* @return int the number of bytes written or false if an error occurred.
* @since 5.0
*/
public function save ($filename, $options = null) {}
/**
* Load XML from a string
* @link http://php.net/manual/domdocument.loadxml.php
* @param string $source <p>
* The string containing the XML.
* </p>
* @param int $options [optional] <p>
* Bitwise OR
* of the libxml option constants.
* </p>
* @return mixed true on success or false on failure. If called statically, returns a
* DOMDocument and issues E_STRICT
* warning.
* @since 5.0
*/
public function loadXML ($source, $options = null) {}
/**
* Dumps the internal XML tree back into a string
* @link http://php.net/manual/domdocument.savexml.php
* @param DOMNode $node [optional] <p>
* Use this parameter to output only a specific node without XML declaration
* rather than the entire document.
* </p>
* @param int $options [optional] <p>
* Additional Options. Currently only LIBXML_NOEMPTYTAG is supported.
* </p>
* @return string the XML, or false if an error occurred.
* @since 5.0
*/
public function saveXML (DOMNode $node = null , $options = null) {}
/**
* Creates a new DOMDocument object
* @link http://php.net/manual/domdocument.construct.php
* @param $version [optional] The version number of the document as part of the XML declaration.
* @param $encoding [optional] The encoding of the document as part of the XML declaration.
* @since 5.0
*/
public function __construct ($version, $encoding) {}
/**
* Validates the document based on its DTD
* @link http://php.net/manual/domdocument.validate.php
* @return bool true on success or false on failure.
* If the document have no DTD attached, this method will return false.
* @since 5.0
*/
public function validate () {}
/**
* Substitutes XIncludes in a DOMDocument Object
* @link http://php.net/manual/domdocument.xinclude.php
* @param int $options [optional] <p>
* libxml parameters. Available
* since PHP 5.1.0 and Libxml 2.6.7.