-
Notifications
You must be signed in to change notification settings - Fork 7
/
dom.php
5739 lines (5196 loc) · 167 KB
/
dom.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
// Start of dom v.20031129
/**
* 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
*/
final class DOMException extends Exception implements Throwable {
protected $message;
protected $file;
protected $line;
public $code;
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Clone the exception
* @link http://php.net/manual/en/exception.clone.php
* @return void No value is returned.
*/
final private function __clone() {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Construct the exception
* @link http://php.net/manual/en/exception.construct.php
* @param string $message [optional] <p>
* The Exception message to throw.
* </p>
* @param int $code [optional] <p>
* The Exception code.
* </p>
* @param Throwable $previous [optional] <p>
* The previous exception used for the exception chaining.
* </p>
*/
public function __construct(string $message = "", int $code = 0, Throwable $previous = null) {}
public function __wakeup() {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the Exception message
* @link http://php.net/manual/en/exception.getmessage.php
* @return string the Exception message as a string.
*/
final public function getMessage(): string {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the Exception code
* @link http://php.net/manual/en/exception.getcode.php
* @return mixed the exception code as integer in
* <b>Exception</b> but possibly as other type in
* <b>Exception</b> descendants (for example as
* string in <b>PDOException</b>).
*/
final public function getCode() {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the file in which the exception occurred
* @link http://php.net/manual/en/exception.getfile.php
* @return string the filename in which the exception was created.
*/
final public function getFile(): string {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the line in which the exception occurred
* @link http://php.net/manual/en/exception.getline.php
* @return int the line number where the exception was created.
*/
final public function getLine(): int {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the stack trace
* @link http://php.net/manual/en/exception.gettrace.php
* @return array the Exception stack trace as an array.
*/
final public function getTrace(): array {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* Returns previous Exception
* @link http://php.net/manual/en/exception.getprevious.php
* @return Exception the previous <b>Exception</b> if available
* or <b>NULL</b> otherwise.
*/
final public function getPrevious(): Exception {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the stack trace as a string
* @link http://php.net/manual/en/exception.gettraceasstring.php
* @return string the Exception stack trace as a string.
*/
final public function getTraceAsString(): string {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* String representation of the exception
* @link http://php.net/manual/en/exception.tostring.php
* @return string the string representation of the exception.
*/
public function __toString(): string {}
}
class DOMStringList {
/**
* @param $index
*/
public function item($index) {}
}
/**
* @link http://php.net/manual/en/book.dom.php
*/
class DOMNameList {
/**
* @param $index
*/
public function getName($index) {}
/**
* @param $index
*/
public function getNamespaceURI($index) {}
}
class DOMImplementationList {
/**
* @param $index
*/
public function item($index) {}
}
class DOMImplementationSource {
/**
* @param $features
*/
public function getDomimplementation($features) {}
/**
* @param $features
*/
public function getDomimplementations($features) {}
}
/**
* The <b>DOMImplementation</b> 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 {
/**
* @param $feature
* @param $version
*/
public function getFeature($feature, $version) {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <i>feature</i> to test. In
* level 2, this can be either 2.0 or
* 1.0.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function hasFeature(string $feature, string $version): bool {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <b>DOMDocumentType</b> node with its
* ownerDocument set to <b>NULL</b>.
*/
public function createDocumentType(string $qualifiedName = null, string $publicId = null, string $systemId = null): DOMDocumentType {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <b>NULL</b>.
* </p>
* @return DOMDocument A new <b>DOMDocument</b> object. If
* <i>namespaceURI</i>, <i>qualifiedName</i>,
* and <i>doctype</i> are null, the returned
* <b>DOMDocument</b> is empty with no document element
*/
public function createDocument(string $namespaceURI = null, string $qualifiedName = null, DOMDocumentType $doctype = null): DOMDocument {}
}
/**
* @link http://php.net/manual/en/class.domnode.php
*/
class DOMNode {
/**
* <p style="margin-top:0;">Returns the most accurate name for the current node type</p>
* @var string
*/
public $nodeName;
/**
* <p style="margin-top:0;">
* The value of this node, depending on its type.
* Contrary to the W3C specification, the node value of
* <b>DOMElement</b> nodes is equal to <b>DOMNode::textContent</b> instead
* of <b><code>NULL</code></b>.
* </p>
* @var string
*/
public $nodeValue;
/**
* <p style="margin-top:0;">Gets the type of the node. One of the predefined <b>XML_xxx_NODE constants</b></p>
* @var int
*/
public $nodeType;
/**
* <p style="margin-top:0;">The parent of this node. If there is no such node, this returns <b><code>NULL</code></b>.</p>
* @var DOMNode
*/
public $parentNode;
/**
* <p style="margin-top:0;">
* A <b>DOMNodeList</b> that contains all
* children of this node. If there are no children, this is an empty
* <b>DOMNodeList</b>.
* </p>
* @var DOMNodeList
*/
public $childNodes;
/**
* <p style="margin-top:0;">
* The first child of this node. If there is no such node, this
* returns <b><code>NULL</code></b>.
* </p>
* @var DOMNode
*/
public $firstChild;
/**
* <p style="margin-top:0;">The last child of this node. If there is no such node, this returns <b><code>NULL</code></b>.</p>
* @var DOMNode
*/
public $lastChild;
/**
* <p style="margin-top:0;">
* The node immediately preceding this node. If there is no such
* node, this returns <b><code>NULL</code></b>.
* </p>
* @var DOMNode
*/
public $previousSibling;
/**
* <p style="margin-top:0;">
* The node immediately following this node. If there is no such
* node, this returns <b><code>NULL</code></b>.
* </p>
* @var DOMNode
*/
public $nextSibling;
/**
* <p style="margin-top:0;">
* A <b>DOMNamedNodeMap</b> containing the
* attributes of this node (if it is a <b>DOMElement</b>)
* or <b><code>NULL</code></b> otherwise.
* </p>
* @var DOMNamedNodeMap
*/
public $attributes;
/**
* <p style="margin-top:0;">The <b>DOMDocument</b> object associated with this node.</p>
* @var DOMDocument
*/
public $ownerDocument;
/**
* <p style="margin-top:0;">The namespace URI of this node, or <b><code>NULL</code></b> if it is unspecified.</p>
* @var string
*/
public $namespaceURI;
/**
* <p style="margin-top:0;">The namespace prefix of this node, or <b><code>NULL</code></b> if it is unspecified.</p>
* @var string
*/
public $prefix;
/**
* <p style="margin-top:0;">Returns the local part of the qualified name of this node.</p>
* @var string
*/
public $localName;
/**
* <p style="margin-top:0;">
* The absolute base URI of this node or <b><code>NULL</code></b> if the implementation
* wasn't able to obtain an absolute URI.
* </p>
* @var string
*/
public $baseURI;
/**
* <p style="margin-top:0;">The text content of this node and its descendants.</p>
* @var string
*/
public $textContent;
/**
* (PHP 5, PHP 7)<br/>
* 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, <i>newnode</i> is
* appended to the children.
* </p>
* @return DOMNode The inserted node.
*/
public function insertBefore(DOMNode $newnode, DOMNode $refnode = null): DOMNode {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <b>FALSE</b> if an error occur.
*/
public function replaceChild(DOMNode $newnode, DOMNode $oldnode): DOMNode {}
/**
* (PHP 5, PHP 7)<br/>
* 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 function returns the old child.
*/
public function removeChild(DOMNode $oldnode): DOMNode {}
/**
* (PHP 5, PHP 7)<br/>
* 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.
*/
public function appendChild(DOMNode $newnode): DOMNode {}
/**
* (PHP 5, PHP 7)<br/>
* Checks if node has children
* @link http://php.net/manual/en/domnode.haschildnodes.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function hasChildNodes(): bool {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <b>FALSE</b>.
* </p>
* @return DOMNode The cloned node.
*/
public function cloneNode(bool $deep = null): DOMNode {}
/**
* (PHP 5, PHP 7)<br/>
* Normalizes the node
* @link http://php.net/manual/en/domnode.normalize.php
* @return void No value is returned.
*/
public function normalize() {}
/**
* (PHP 5, PHP 7)<br/>
* 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
* <b>DOMImplementation::hasFeature</b> for a
* list of features.
* </p>
* @param string $version <p>
* The version number of the <i>feature</i> to test.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function isSupported(string $feature, string $version): bool {}
/**
* (PHP 5, PHP 7)<br/>
* Checks if node has attributes
* @link http://php.net/manual/en/domnode.hasattributes.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function hasAttributes(): bool {}
/**
* @param DOMNode $other
*/
public function compareDocumentPosition(DOMNode $other) {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function isSameNode(DOMNode $node): bool {}
/**
* (PHP 5, PHP 7)<br/>
* 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.
*/
public function lookupPrefix(string $namespaceURI): string {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <b>TRUE</b> if <i>namespaceURI</i> is the default
* namespace, <b>FALSE</b> otherwise.
*/
public function isDefaultNamespace(string $namespaceURI): bool {}
/**
* (PHP 5, PHP 7)<br/>
* 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.
*/
public function lookupNamespaceUri(string $prefix): string {}
/**
* @param DOMNode $arg
*/
public function isEqualNode(DOMNode $arg) {}
/**
* @param $feature
* @param $version
*/
public function getFeature($feature, $version) {}
/**
* @param $key
* @param $data
* @param $handler
*/
public function setUserData($key, $data, $handler) {}
/**
* @param $key
*/
public function getUserData($key) {}
/**
* (PHP 5 >= 5.2.0, PHP 7)<br/>
* Get an XPath for a node
* @link http://php.net/manual/en/domnode.getnodepath.php
* @return string a string containing the XPath, or <b>NULL</b> in case of an error.
*/
public function getNodePath(): string {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* 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.
*/
public function getLineNo(): int {}
/**
* (PHP 5 >= 5.2.0, PHP 7)<br/>
* Canonicalize nodes to a string
* @link http://php.net/manual/en/domnode.c14n.php
* @param bool $exclusive [optional] <p>
* Enable exclusive parsing of only the nodes matched by the provided
* xpath or namespace prefixes.
* </p>
* @param bool $with_comments [optional] <p>
* Retain comments in output.
* </p>
* @param array $xpath [optional] <p>
* An array of xpaths to filter the nodes by.
* </p>
* @param array $ns_prefixes [optional] <p>
* An array of namespace prefixes to filter the nodes by.
* </p>
* @return string canonicalized nodes as a string or <b>FALSE</b> on failure
*/
public function C14N(bool $exclusive = null, bool $with_comments = null, array $xpath = null, array $ns_prefixes = null): string {}
/**
* (PHP 5 >= 5.2.0, PHP 7)<br/>
* Canonicalize nodes to a file
* @link http://php.net/manual/en/domnode.c14nfile.php
* @param string $uri <p>
* Path to write the output to.
* </p>
* @param bool $exclusive [optional] <p>
* Enable exclusive parsing of only the nodes matched by the provided
* xpath or namespace prefixes.
* </p>
* @param bool $with_comments [optional] <p>
* Retain comments in output.
* </p>
* @param array $xpath [optional] <p>
* An array of xpaths to filter the nodes by.
* </p>
* @param array $ns_prefixes [optional] <p>
* An array of namespace prefixes to filter the nodes by.
* </p>
* @return int Number of bytes written or <b>FALSE</b> on failure
*/
public function C14NFile(string $uri, bool $exclusive = null, bool $with_comments = null, array $xpath = null, array $ns_prefixes = null): int {}
}
class DOMNameSpaceNode {
}
/**
* @link http://php.net/manual/en/class.domdocumentfragment.php
*/
class DOMDocumentFragment extends DOMNode {
public function __construct() {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Append raw XML data
* @link http://php.net/manual/en/domdocumentfragment.appendxml.php
* @param string $data <p>
* XML to append.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function appendXML(string $data): bool {}
/**
* (PHP 5, PHP 7)<br/>
* 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, <i>newnode</i> is
* appended to the children.
* </p>
* @return DOMNode The inserted node.
*/
public function insertBefore(DOMNode $newnode, DOMNode $refnode = null): DOMNode {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <b>FALSE</b> if an error occur.
*/
public function replaceChild(DOMNode $newnode, DOMNode $oldnode): DOMNode {}
/**
* (PHP 5, PHP 7)<br/>
* 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 function returns the old child.
*/
public function removeChild(DOMNode $oldnode): DOMNode {}
/**
* (PHP 5, PHP 7)<br/>
* 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.
*/
public function appendChild(DOMNode $newnode): DOMNode {}
/**
* (PHP 5, PHP 7)<br/>
* Checks if node has children
* @link http://php.net/manual/en/domnode.haschildnodes.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function hasChildNodes(): bool {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <b>FALSE</b>.
* </p>
* @return DOMNode The cloned node.
*/
public function cloneNode(bool $deep = null): DOMNode {}
/**
* (PHP 5, PHP 7)<br/>
* Normalizes the node
* @link http://php.net/manual/en/domnode.normalize.php
* @return void No value is returned.
*/
public function normalize() {}
/**
* (PHP 5, PHP 7)<br/>
* 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
* <b>DOMImplementation::hasFeature</b> for a
* list of features.
* </p>
* @param string $version <p>
* The version number of the <i>feature</i> to test.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function isSupported(string $feature, string $version): bool {}
/**
* (PHP 5, PHP 7)<br/>
* Checks if node has attributes
* @link http://php.net/manual/en/domnode.hasattributes.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function hasAttributes(): bool {}
/**
* @param DOMNode $other
*/
public function compareDocumentPosition(DOMNode $other) {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function isSameNode(DOMNode $node): bool {}
/**
* (PHP 5, PHP 7)<br/>
* 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.
*/
public function lookupPrefix(string $namespaceURI): string {}
/**
* (PHP 5, PHP 7)<br/>
* 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 <b>TRUE</b> if <i>namespaceURI</i> is the default
* namespace, <b>FALSE</b> otherwise.
*/
public function isDefaultNamespace(string $namespaceURI): bool {}
/**
* (PHP 5, PHP 7)<br/>
* 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.
*/
public function lookupNamespaceUri(string $prefix): string {}
/**
* @param DOMNode $arg
*/
public function isEqualNode(DOMNode $arg) {}
/**
* @param $feature
* @param $version
*/
public function getFeature($feature, $version) {}
/**
* @param $key
* @param $data
* @param $handler
*/
public function setUserData($key, $data, $handler) {}
/**
* @param $key
*/
public function getUserData($key) {}
/**
* (PHP 5 >= 5.2.0, PHP 7)<br/>
* Get an XPath for a node
* @link http://php.net/manual/en/domnode.getnodepath.php
* @return string a string containing the XPath, or <b>NULL</b> in case of an error.
*/
public function getNodePath(): string {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* 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.
*/
public function getLineNo(): int {}
/**
* (PHP 5 >= 5.2.0, PHP 7)<br/>
* Canonicalize nodes to a string
* @link http://php.net/manual/en/domnode.c14n.php
* @param bool $exclusive [optional] <p>
* Enable exclusive parsing of only the nodes matched by the provided
* xpath or namespace prefixes.
* </p>
* @param bool $with_comments [optional] <p>
* Retain comments in output.
* </p>
* @param array $xpath [optional] <p>
* An array of xpaths to filter the nodes by.
* </p>
* @param array $ns_prefixes [optional] <p>
* An array of namespace prefixes to filter the nodes by.
* </p>
* @return string canonicalized nodes as a string or <b>FALSE</b> on failure
*/
public function C14N(bool $exclusive = null, bool $with_comments = null, array $xpath = null, array $ns_prefixes = null): string {}
/**
* (PHP 5 >= 5.2.0, PHP 7)<br/>
* Canonicalize nodes to a file
* @link http://php.net/manual/en/domnode.c14nfile.php
* @param string $uri <p>
* Path to write the output to.
* </p>
* @param bool $exclusive [optional] <p>
* Enable exclusive parsing of only the nodes matched by the provided
* xpath or namespace prefixes.
* </p>
* @param bool $with_comments [optional] <p>
* Retain comments in output.
* </p>
* @param array $xpath [optional] <p>
* An array of xpaths to filter the nodes by.
* </p>
* @param array $ns_prefixes [optional] <p>
* An array of namespace prefixes to filter the nodes by.
* </p>
* @return int Number of bytes written or <b>FALSE</b> on failure
*/
public function C14NFile(string $uri, bool $exclusive = null, bool $with_comments = null, array $xpath = null, array $ns_prefixes = null): int {}
}
/**
* Represents an entire HTML or XML document; serves as the root of the
* document tree.
* @link http://php.net/manual/en/class.domdocument.php
*/
class DOMDocument extends DOMNode {
/**
* <p style="margin-top:0;">
* Deprecated. Actual encoding of the document,
* is a readonly equivalent to
* encoding.
* </p>
* @var string
*/
public $actualEncoding;
/**
* <p style="margin-top:0;">
* Deprecated. Configuration used when
* <b>DOMDocument::normalizeDocument()</b> is
* invoked.
* </p>
* @var DOMConfiguration
*/
public $config;
/**
* <p style="margin-top:0;">The Document Type Declaration associated with this document.</p>
* @var DOMDocumentType
*/
public $doctype;
/**
* <p style="margin-top:0;">
* This is a convenience attribute that allows direct access to the
* child node that is the document element of the document.
* </p>
* @var DOMElement
*/
public $documentElement;
/**
* <p style="margin-top:0;">The location of the document or <b><code>NULL</code></b> if undefined.</p>
* @var string
*/
public $documentURI;
/**
* <p style="margin-top: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.
* </p>
* @var string
*/
public $encoding;
/**
* <p style="margin-top:0;">Nicely formats output with indentation and extra space.</p>
* @var bool
*/
public $formatOutput;
/**
* <p style="margin-top:0;">
* The <b>DOMImplementation</b> object that handles
* this document.
* </p>
* @var DOMImplementation
*/
public $implementation;
/**
* <p style="margin-top:0;">Do not remove redundant white space. Default to <b><code>TRUE</code></b>.</p>
* @var bool
*/
public $preserveWhiteSpace;
/**
* <p style="margin-top: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.
* </p>
* @var bool
*/
public $recover;
/**
* <p style="margin-top:0;">
* Set it to <b><code>TRUE</code></b> to load external entities from a doctype
* declaration. This is useful for including character entities in
* your XML document.
* </p>
* @var bool
*/
public $resolveExternals;
/**
* <p style="margin-top:0;">
* Deprecated. Whether or not the document is
* standalone, as specified by the XML declaration, corresponds to
* xmlStandalone.
* </p>
* @var bool
*/
public $standalone;
/**
* <p style="margin-top:0;">Throws <b>DOMException</b> on errors. Default to <b><code>TRUE</code></b>.</p>
* @var bool
*/
public $strictErrorChecking;
/**
* <p style="margin-top:0;">
* Proprietary. Whether or not to substitute
* entities. This attribute is not part of
* the DOM specification and is specific to libxml.
* </p>
* @var bool
*/
public $substituteEntities;
/**
* <p style="margin-top:0;">Loads and validates against the DTD. Default to <b><code>FALSE</code></b>.</p>
* @var bool
*/
public $validateOnParse;
/**
* <p style="margin-top:0;">
* Deprecated. Version of XML, corresponds to
* xmlVersion.
* </p>
* @var string
*/
public $version;
/**
* <p style="margin-top:0;">
* An attribute specifying, as part of the XML declaration, the
* encoding of this document. This is <b><code>NULL</code></b> when unspecified or when it
* is not known, such as when the Document was created in memory.
* </p>
* @var string
*/
public $xmlEncoding;
/**
* <p style="margin-top:0;">
* An attribute specifying, as part of the XML declaration, whether
* this document is standalone. This is <b><code>FALSE</code></b> when unspecified.
* </p>
* @var bool
*/
public $xmlStandalone;
/**
* <p style="margin-top: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".
* </p>
* @var string
*/
public $xmlVersion;
/**
* (PHP 5, PHP 7)<br/>
* Create new element node