-
Notifications
You must be signed in to change notification settings - Fork 8
/
tidy.php
996 lines (919 loc) · 30.8 KB
/
tidy.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
<?php
// Start of tidy v.7.0.4-7ubuntu2
/**
* An HTML node in an HTML file, as detected by tidy.
* @link http://php.net/manual/en/class.tidy.php
*/
class tidy {
/**
* @var string
*/
public $errorBuffer;
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Returns the value of the specified configuration option for the tidy document
* @link http://php.net/manual/en/tidy.getopt.php
* @param string $option <p>
* You will find a list with each configuration option and their types
* at: http://tidy.sourceforge.net/docs/quickref.html.
* </p>
* @return mixed the value of the specified <i>option</i>.
* The return type depends on the type of the specified one.
*/
public function getOpt(string $option) {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Execute configured cleanup and repair operations on parsed markup
* @link http://php.net/manual/en/tidy.cleanrepair.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function cleanRepair(): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Parse markup in file or URI
* @link http://php.net/manual/en/tidy.parsefile.php
* @param string $filename <p>
* If the <i>filename</i> parameter is given, this function
* will also read that file and initialize the object with the file,
* acting like <b>tidy_parse_file</b>.
* </p>
* @param mixed $config [optional] <p>
* The config <i>config</i> can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* For an explanation about each option, see
* http://tidy.sourceforge.net/docs/quickref.html.
* </p>
* @param string $encoding [optional] <p>
* The <i>encoding</i> parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @param bool $use_include_path [optional] <p>
* Search for the file in the include_path.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function parseFile(string $filename, $config = null, string $encoding = null, bool $use_include_path = false): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Parse a document stored in a string
* @link http://php.net/manual/en/tidy.parsestring.php
* @param string $input <p>
* The data to be parsed.
* </p>
* @param mixed $config [optional] <p>
* The config <i>config</i> can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* For an explanation about each option, visit http://tidy.sourceforge.net/docs/quickref.html.
* </p>
* @param string $encoding [optional] <p>
* The <i>encoding</i> parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @return bool a new <b>tidy</b> instance.
*/
public function parseString(string $input, $config = null, string $encoding = null): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.7.0)<br/>
* Repair a string using an optionally provided configuration file
* @link http://php.net/manual/en/tidy.repairstring.php
* @param string $data <p>
* The data to be repaired.
* </p>
* @param mixed $config [optional] <p>
* The config <i>config</i> can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* Check http://tidy.sourceforge.net/docs/quickref.html for
* an explanation about each option.
* </p>
* @param string $encoding [optional] <p>
* The <i>encoding</i> parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @return string the repaired string.
*/
public function repairString(string $data, $config = null, string $encoding = null): string {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.7.0)<br/>
* Repair a file and return it as a string
* @link http://php.net/manual/en/tidy.repairfile.php
* @param string $filename <p>
* The file to be repaired.
* </p>
* @param mixed $config [optional] <p>
* The config <i>config</i> can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* Check http://tidy.sourceforge.net/docs/quickref.html for an
* explanation about each option.
* </p>
* @param string $encoding [optional] <p>
* The <i>encoding</i> parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @param bool $use_include_path [optional] <p>
* Search for the file in the include_path.
* </p>
* @return string the repaired contents as a string.
*/
public function repairFile(string $filename, $config = null, string $encoding = null, bool $use_include_path = false): string {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Run configured diagnostics on parsed and repaired markup
* @link http://php.net/manual/en/tidy.diagnose.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function diagnose(): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Get release date (version) for Tidy library
* @link http://php.net/manual/en/tidy.getrelease.php
* @return string a string with the release date of the Tidy library.
*/
public function getRelease(): string {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.7.0)<br/>
* Get current Tidy configuration
* @link http://php.net/manual/en/tidy.getconfig.php
* @return array an array of configuration options.
* </p>
* <p>
* For an explanation about each option, visit http://tidy.sourceforge.net/docs/quickref.html.
*/
public function getConfig(): array {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Get status of specified document
* @link http://php.net/manual/en/tidy.getstatus.php
* @return int 0 if no error/warning was raised, 1 for warnings or accessibility
* errors, or 2 for errors.
*/
public function getStatus(): int {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Get the Detected HTML version for the specified document
* @link http://php.net/manual/en/tidy.gethtmlver.php
* @return int the detected HTML version.
* </p>
* <p>
* This function is not yet implemented in the Tidylib itself, so it always
* return 0.
*/
public function getHtmlVer(): int {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Returns the documentation for the given option name
* @link http://php.net/manual/en/tidy.getoptdoc.php
* @param string $optname <p>
* The option name
* </p>
* @return string a string if the option exists and has documentation available, or
* <b>FALSE</b> otherwise.
*/
public function getOptDoc(string $optname): string {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Indicates if the document is a XHTML document
* @link http://php.net/manual/en/tidy.isxhtml.php
* @return bool This function returns <b>TRUE</b> if the specified tidy
* <i>object</i> is a XHTML document, or <b>FALSE</b> otherwise.
* </p>
* <p>
* This function is not yet implemented in the Tidylib itself, so it always
* return <b>FALSE</b>.
*/
public function isXhtml(): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Indicates if the document is a generic (non HTML/XHTML) XML document
* @link http://php.net/manual/en/tidy.isxml.php
* @return bool This function returns <b>TRUE</b> if the specified tidy
* <i>object</i> is a generic XML document (non HTML/XHTML),
* or <b>FALSE</b> otherwise.
* </p>
* <p>
* This function is not yet implemented in the Tidylib itself, so it always
* return <b>FALSE</b>.
*/
public function isXml(): bool {}
/**
* (PHP 5, PHP 7, PECL tidy 0.5.2-1.0.0)<br/>
* Returns a <b>tidyNode</b> object representing the root of the tidy parse tree
* @link http://php.net/manual/en/tidy.root.php
* @return tidyNode the <b>tidyNode</b> object.
*/
public function root(): tidyNode {}
/**
* (PHP 5, PHP 7, PECL tidy 0.5.2-1.0.0)<br/>
* Returns a <b>tidyNode</b> object starting from the <head> tag of the tidy parse tree
* @link http://php.net/manual/en/tidy.head.php
* @return tidyNode the <b>tidyNode</b> object.
*/
public function head(): tidyNode {}
/**
* (PHP 5, PHP 7, PECL tidy 0.5.2-1.0.0)<br/>
* Returns a <b>tidyNode</b> object starting from the <html> tag of the tidy parse tree
* @link http://php.net/manual/en/tidy.html.php
* @return tidyNode the <b>tidyNode</b> object.
*/
public function html(): tidyNode {}
/**
* (PHP 5, PHP 7, PECL tidy 0.5.2-1.0)<br/>
* Returns a <b>tidyNode</b> object starting from the <body> tag of the tidy parse tree
* @link http://php.net/manual/en/tidy.body.php
* @return tidyNode a <b>tidyNode</b> object starting from the
* <body> tag of the tidy parse tree.
*/
public function body(): tidyNode {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Constructs a new <b>tidy</b> object
* @link http://php.net/manual/en/tidy.construct.php
* @param string $filename [optional] <p>
* If the <i>filename</i> parameter is given, this function
* will also read that file and initialize the object with the file,
* acting like <b>tidy_parse_file</b>.
* </p>
* @param mixed $config [optional] <p>
* The config <i>config</i> can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* For an explanation about each option, visit http://tidy.sourceforge.net/docs/quickref.html.
* </p>
* @param string $encoding [optional] <p>
* The <i>encoding</i> parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @param bool $use_include_path [optional] <p>
* Search for the file in the include_path.
* </p>
*/
public function __construct(string $filename = null, $config = null, string $encoding = null, bool $use_include_path = null) {}
}
/**
* An HTML node in an HTML file, as detected by tidy.
* @link http://php.net/manual/en/class.tidynode.php
*/
final class tidyNode {
/**
* <p style="margin-top:0;">The HTML representation of the node, including the surrounding tags.</p>
* @var string
*/
public $value;
/**
* <p style="margin-top:0;">The name of the HTML node</p>
* @var string
*/
public $name;
/**
* <p style="margin-top:0;">The type of the tag (one of the constants above, e.g. <b><code>TIDY_NODETYPE_PHP</code></b>)</p>
* @var int
*/
public $type;
/**
* <p style="margin-top:0;">The line number at which the tags is located in the file</p>
* @var int
*/
public $line;
/**
* <p style="margin-top:0;">The column number at which the tags is located in the file</p>
* @var int
*/
public $column;
/**
* <p style="margin-top:0;">Indicates if the node is a proprietary tag</p>
* @var bool
*/
public $proprietary;
/**
* <p style="margin-top:0;">The ID of the tag (one of the constants above, e.g. <b><code>TIDY_TAG_FRAME</code></b>)</p>
* @var int
*/
public $id;
/**
* <p style="margin-top:0;">
* An array of string, representing
* the attributes names (as keys) of the current node.
* </p>
* @var array
*/
public $attribute;
/**
* <p style="margin-top:0;">
* An array of <b>tidyNode</b>, representing
* the children of the current node.
* </p>
* @var array
*/
public $child;
/**
* (PHP 5 >= 5.0.1, PHP 7)<br/>
* Checks if a node has children
* @link http://php.net/manual/en/tidynode.haschildren.php
* @return bool <b>TRUE</b> if the node has children, <b>FALSE</b> otherwise.
*/
public function hasChildren(): bool {}
/**
* (PHP 5 >= 5.0.1, PHP 7)<br/>
* Checks if a node has siblings
* @link http://php.net/manual/en/tidynode.hassiblings.php
* @return bool <b>TRUE</b> if the node has siblings, <b>FALSE</b> otherwise.
*/
public function hasSiblings(): bool {}
/**
* (PHP 5 >= 5.0.1, PHP 7)<br/>
* Checks if a node represents a comment
* @link http://php.net/manual/en/tidynode.iscomment.php
* @return bool <b>TRUE</b> if the node is a comment, <b>FALSE</b> otherwise.
*/
public function isComment(): bool {}
/**
* (PHP 5 >= 5.0.1, PHP 7)<br/>
* Checks if a node is part of a HTML document
* @link http://php.net/manual/en/tidynode.ishtml.php
* @return bool <b>TRUE</b> if the node is part of a HTML document, <b>FALSE</b> otherwise.
*/
public function isHtml(): bool {}
/**
* (PHP 5 >= 5.0.1, PHP 7)<br/>
* Checks if a node represents text (no markup)
* @link http://php.net/manual/en/tidynode.istext.php
* @return bool <b>TRUE</b> if the node represent a text, <b>FALSE</b> otherwise.
*/
public function isText(): bool {}
/**
* (PHP 5 >= 5.0.1, PHP 7)<br/>
* Checks if this node is JSTE
* @link http://php.net/manual/en/tidynode.isjste.php
* @return bool <b>TRUE</b> if the node is JSTE, <b>FALSE</b> otherwise.
*/
public function isJste(): bool {}
/**
* (PHP 5 >= 5.0.1, PHP 7)<br/>
* Checks if this node is ASP
* @link http://php.net/manual/en/tidynode.isasp.php
* @return bool <b>TRUE</b> if the node is ASP, <b>FALSE</b> otherwise.
*/
public function isAsp(): bool {}
/**
* (PHP 5 >= 5.0.1, PHP 7)<br/>
* Checks if a node is PHP
* @link http://php.net/manual/en/tidynode.isphp.php
* @return bool <b>TRUE</b> if the current node is PHP code, <b>FALSE</b> otherwise.
*/
public function isPhp(): bool {}
/**
* (PHP 5 >= 5.2.2, PHP 7)<br/>
* Returns the parent node of the current node
* @link http://php.net/manual/en/tidynode.getparent.php
* @return tidyNode a tidyNode if the node has a parent, or <b>NULL</b>
* otherwise.
*/
public function getParent(): tidyNode {}
private function __construct() {}
}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Returns the value of the specified configuration option for the tidy document
* @link http://php.net/manual/en/tidy.getopt.php
* @param string $option <p>
* You will find a list with each configuration option and their types
* at: http://tidy.sourceforge.net/docs/quickref.html.
* </p>
* @return mixed the value of the specified <i>option</i>.
* The return type depends on the type of the specified one.
*/
function tidy_getopt(string $option) {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Parse a document stored in a string
* @link http://php.net/manual/en/tidy.parsestring.php
* @param string $input <p>
* The data to be parsed.
* </p>
* @param mixed $config [optional] <p>
* The config <i>config</i> can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* For an explanation about each option, visit http://tidy.sourceforge.net/docs/quickref.html.
* </p>
* @param string $encoding [optional] <p>
* The <i>encoding</i> parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @return bool a new <b>tidy</b> instance.
*/
function tidy_parse_string(string $input, $config = null, string $encoding = null): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Parse markup in file or URI
* @link http://php.net/manual/en/tidy.parsefile.php
* @param string $filename <p>
* If the <i>filename</i> parameter is given, this function
* will also read that file and initialize the object with the file,
* acting like <b>tidy_parse_file</b>.
* </p>
* @param mixed $config [optional] <p>
* The config <i>config</i> can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* For an explanation about each option, see
* http://tidy.sourceforge.net/docs/quickref.html.
* </p>
* @param string $encoding [optional] <p>
* The <i>encoding</i> parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @param bool $use_include_path [optional] <p>
* Search for the file in the include_path.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function tidy_parse_file(string $filename, $config = null, string $encoding = null, bool $use_include_path = false): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Return a string representing the parsed tidy markup
* @link http://php.net/manual/en/function.tidy-get-output.php
* @param tidy $object <p>
* The <b>Tidy</b> object.
* </p>
* @return string the parsed tidy markup.
*/
function tidy_get_output(tidy $object): string {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Return warnings and errors which occurred parsing the specified document
* @link http://php.net/manual/en/tidy.props.errorbuffer.php
* @return mixed the error buffer as a string.
*/
function tidy_get_error_buffer() {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Execute configured cleanup and repair operations on parsed markup
* @link http://php.net/manual/en/tidy.cleanrepair.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function tidy_clean_repair(): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.7.0)<br/>
* Repair a string using an optionally provided configuration file
* @link http://php.net/manual/en/tidy.repairstring.php
* @param string $data <p>
* The data to be repaired.
* </p>
* @param mixed $config [optional] <p>
* The config <i>config</i> can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* Check http://tidy.sourceforge.net/docs/quickref.html for
* an explanation about each option.
* </p>
* @param string $encoding [optional] <p>
* The <i>encoding</i> parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @return string the repaired string.
*/
function tidy_repair_string(string $data, $config = null, string $encoding = null): string {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.7.0)<br/>
* Repair a file and return it as a string
* @link http://php.net/manual/en/tidy.repairfile.php
* @param string $filename <p>
* The file to be repaired.
* </p>
* @param mixed $config [optional] <p>
* The config <i>config</i> can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* Check http://tidy.sourceforge.net/docs/quickref.html for an
* explanation about each option.
* </p>
* @param string $encoding [optional] <p>
* The <i>encoding</i> parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @param bool $use_include_path [optional] <p>
* Search for the file in the include_path.
* </p>
* @return string the repaired contents as a string.
*/
function tidy_repair_file(string $filename, $config = null, string $encoding = null, bool $use_include_path = false): string {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Run configured diagnostics on parsed and repaired markup
* @link http://php.net/manual/en/tidy.diagnose.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function tidy_diagnose(): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Get release date (version) for Tidy library
* @link http://php.net/manual/en/tidy.getrelease.php
* @return string a string with the release date of the Tidy library.
*/
function tidy_get_release(): string {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.7.0)<br/>
* Get current Tidy configuration
* @link http://php.net/manual/en/tidy.getconfig.php
* @return array an array of configuration options.
* </p>
* <p>
* For an explanation about each option, visit http://tidy.sourceforge.net/docs/quickref.html.
*/
function tidy_get_config(): array {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Get status of specified document
* @link http://php.net/manual/en/tidy.getstatus.php
* @return int 0 if no error/warning was raised, 1 for warnings or accessibility
* errors, or 2 for errors.
*/
function tidy_get_status(): int {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Get the Detected HTML version for the specified document
* @link http://php.net/manual/en/tidy.gethtmlver.php
* @return int the detected HTML version.
* </p>
* <p>
* This function is not yet implemented in the Tidylib itself, so it always
* return 0.
*/
function tidy_get_html_ver(): int {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Indicates if the document is a XHTML document
* @link http://php.net/manual/en/tidy.isxhtml.php
* @return bool This function returns <b>TRUE</b> if the specified tidy
* <i>object</i> is a XHTML document, or <b>FALSE</b> otherwise.
* </p>
* <p>
* This function is not yet implemented in the Tidylib itself, so it always
* return <b>FALSE</b>.
*/
function tidy_is_xhtml(): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Indicates if the document is a generic (non HTML/XHTML) XML document
* @link http://php.net/manual/en/tidy.isxml.php
* @return bool This function returns <b>TRUE</b> if the specified tidy
* <i>object</i> is a generic XML document (non HTML/XHTML),
* or <b>FALSE</b> otherwise.
* </p>
* <p>
* This function is not yet implemented in the Tidylib itself, so it always
* return <b>FALSE</b>.
*/
function tidy_is_xml(): bool {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Returns the Number of Tidy errors encountered for specified document
* @link http://php.net/manual/en/function.tidy-error-count.php
* @param tidy $object <p>
* The <b>Tidy</b> object.
* </p>
* @return int the number of errors.
*/
function tidy_error_count(tidy $object): int {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Returns the Number of Tidy warnings encountered for specified document
* @link http://php.net/manual/en/function.tidy-warning-count.php
* @param tidy $object <p>
* The <b>Tidy</b> object.
* </p>
* @return int the number of warnings.
*/
function tidy_warning_count(tidy $object): int {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Returns the Number of Tidy accessibility warnings encountered for specified document
* @link http://php.net/manual/en/function.tidy-access-count.php
* @param tidy $object <p>
* The <b>Tidy</b> object.
* </p>
* @return int the number of warnings.
*/
function tidy_access_count(tidy $object): int {}
/**
* (PHP 5, PHP 7, PECL tidy >= 0.5.2)<br/>
* Returns the Number of Tidy configuration errors encountered for specified document
* @link http://php.net/manual/en/function.tidy-config-count.php
* @param tidy $object <p>
* The <b>Tidy</b> object.
* </p>
* @return int the number of errors.
*/
function tidy_config_count(tidy $object): int {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Returns the documentation for the given option name
* @link http://php.net/manual/en/tidy.getoptdoc.php
* @param string $optname <p>
* The option name
* </p>
* @return string a string if the option exists and has documentation available, or
* <b>FALSE</b> otherwise.
*/
function tidy_get_opt_doc(string $optname): string {}
/**
* (PHP 5, PHP 7, PECL tidy 0.5.2-1.0.0)<br/>
* Returns a <b>tidyNode</b> object representing the root of the tidy parse tree
* @link http://php.net/manual/en/tidy.root.php
* @return tidyNode the <b>tidyNode</b> object.
*/
function tidy_get_root(): tidyNode {}
/**
* (PHP 5, PHP 7, PECL tidy 0.5.2-1.0.0)<br/>
* Returns a <b>tidyNode</b> object starting from the <head> tag of the tidy parse tree
* @link http://php.net/manual/en/tidy.head.php
* @return tidyNode the <b>tidyNode</b> object.
*/
function tidy_get_head(): tidyNode {}
/**
* (PHP 5, PHP 7, PECL tidy 0.5.2-1.0.0)<br/>
* Returns a <b>tidyNode</b> object starting from the <html> tag of the tidy parse tree
* @link http://php.net/manual/en/tidy.html.php
* @return tidyNode the <b>tidyNode</b> object.
*/
function tidy_get_html(): tidyNode {}
/**
* (PHP 5, PHP 7, PECL tidy 0.5.2-1.0)<br/>
* Returns a <b>tidyNode</b> object starting from the <body> tag of the tidy parse tree
* @link http://php.net/manual/en/tidy.body.php
* @param $tidy
* @return tidyNode a <b>tidyNode</b> object starting from the
* <body> tag of the tidy parse tree.
*/
function tidy_get_body($tidy): tidyNode {}
/**
* description
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_TAG_UNKNOWN', 0);
define ('TIDY_TAG_A', 1);
define ('TIDY_TAG_ABBR', 2);
define ('TIDY_TAG_ACRONYM', 3);
define ('TIDY_TAG_ADDRESS', 4);
define ('TIDY_TAG_ALIGN', 5);
define ('TIDY_TAG_APPLET', 6);
define ('TIDY_TAG_AREA', 7);
define ('TIDY_TAG_B', 8);
define ('TIDY_TAG_BASE', 9);
define ('TIDY_TAG_BASEFONT', 10);
define ('TIDY_TAG_BDO', 11);
define ('TIDY_TAG_BGSOUND', 12);
define ('TIDY_TAG_BIG', 13);
define ('TIDY_TAG_BLINK', 14);
define ('TIDY_TAG_BLOCKQUOTE', 15);
define ('TIDY_TAG_BODY', 16);
define ('TIDY_TAG_BR', 17);
define ('TIDY_TAG_BUTTON', 18);
define ('TIDY_TAG_CAPTION', 19);
define ('TIDY_TAG_CENTER', 20);
define ('TIDY_TAG_CITE', 21);
define ('TIDY_TAG_CODE', 22);
define ('TIDY_TAG_COL', 23);
define ('TIDY_TAG_COLGROUP', 24);
define ('TIDY_TAG_COMMENT', 25);
define ('TIDY_TAG_DD', 26);
define ('TIDY_TAG_DEL', 27);
define ('TIDY_TAG_DFN', 28);
define ('TIDY_TAG_DIR', 29);
define ('TIDY_TAG_DIV', 30);
define ('TIDY_TAG_DL', 31);
define ('TIDY_TAG_DT', 32);
define ('TIDY_TAG_EM', 33);
define ('TIDY_TAG_EMBED', 34);
define ('TIDY_TAG_FIELDSET', 35);
define ('TIDY_TAG_FONT', 36);
define ('TIDY_TAG_FORM', 37);
define ('TIDY_TAG_FRAME', 38);
define ('TIDY_TAG_FRAMESET', 39);
define ('TIDY_TAG_H1', 40);
define ('TIDY_TAG_H2', 41);
define ('TIDY_TAG_H3', 42);
define ('TIDY_TAG_H4', 43);
define ('TIDY_TAG_H5', 44);
define ('TIDY_TAG_H6', 45);
define ('TIDY_TAG_HEAD', 46);
define ('TIDY_TAG_HR', 47);
define ('TIDY_TAG_HTML', 48);
define ('TIDY_TAG_I', 49);
define ('TIDY_TAG_IFRAME', 50);
define ('TIDY_TAG_ILAYER', 51);
define ('TIDY_TAG_IMG', 52);
define ('TIDY_TAG_INPUT', 53);
define ('TIDY_TAG_INS', 54);
define ('TIDY_TAG_ISINDEX', 55);
define ('TIDY_TAG_KBD', 56);
define ('TIDY_TAG_KEYGEN', 57);
define ('TIDY_TAG_LABEL', 58);
define ('TIDY_TAG_LAYER', 59);
define ('TIDY_TAG_LEGEND', 60);
define ('TIDY_TAG_LI', 61);
define ('TIDY_TAG_LINK', 62);
define ('TIDY_TAG_LISTING', 63);
define ('TIDY_TAG_MAP', 64);
define ('TIDY_TAG_MARQUEE', 65);
define ('TIDY_TAG_MENU', 66);
define ('TIDY_TAG_META', 67);
define ('TIDY_TAG_MULTICOL', 68);
define ('TIDY_TAG_NOBR', 69);
define ('TIDY_TAG_NOEMBED', 70);
define ('TIDY_TAG_NOFRAMES', 71);
define ('TIDY_TAG_NOLAYER', 72);
define ('TIDY_TAG_NOSAVE', 73);
define ('TIDY_TAG_NOSCRIPT', 74);
define ('TIDY_TAG_OBJECT', 75);
define ('TIDY_TAG_OL', 76);
define ('TIDY_TAG_OPTGROUP', 77);
define ('TIDY_TAG_OPTION', 78);
define ('TIDY_TAG_P', 79);
define ('TIDY_TAG_PARAM', 80);
define ('TIDY_TAG_PLAINTEXT', 81);
define ('TIDY_TAG_PRE', 82);
define ('TIDY_TAG_Q', 83);
define ('TIDY_TAG_RB', 84);
define ('TIDY_TAG_RBC', 85);
define ('TIDY_TAG_RP', 86);
define ('TIDY_TAG_RT', 87);
define ('TIDY_TAG_RTC', 88);
define ('TIDY_TAG_RUBY', 89);
define ('TIDY_TAG_S', 90);
define ('TIDY_TAG_SAMP', 91);
define ('TIDY_TAG_SCRIPT', 92);
define ('TIDY_TAG_SELECT', 93);
define ('TIDY_TAG_SERVER', 94);
define ('TIDY_TAG_SERVLET', 95);
define ('TIDY_TAG_SMALL', 96);
define ('TIDY_TAG_SPACER', 97);
define ('TIDY_TAG_SPAN', 98);
define ('TIDY_TAG_STRIKE', 99);
define ('TIDY_TAG_STRONG', 100);
define ('TIDY_TAG_STYLE', 101);
define ('TIDY_TAG_SUB', 102);
define ('TIDY_TAG_SUP', 103);
define ('TIDY_TAG_TABLE', 104);
define ('TIDY_TAG_TBODY', 105);
define ('TIDY_TAG_TD', 106);
define ('TIDY_TAG_TEXTAREA', 107);
define ('TIDY_TAG_TFOOT', 108);
define ('TIDY_TAG_TH', 109);
define ('TIDY_TAG_THEAD', 110);
define ('TIDY_TAG_TITLE', 111);
define ('TIDY_TAG_TR', 112);
define ('TIDY_TAG_TT', 113);
define ('TIDY_TAG_U', 114);
define ('TIDY_TAG_UL', 115);
define ('TIDY_TAG_VAR', 116);
define ('TIDY_TAG_WBR', 117);
define ('TIDY_TAG_XMP', 118);
/**
* root node
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_ROOT', 0);
/**
* doctype
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_DOCTYPE', 1);
/**
* HTML comment
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_COMMENT', 2);
/**
* Processing Instruction
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_PROCINS', 3);
/**
* Text
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_TEXT', 4);
/**
* start tag
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_START', 5);
/**
* end tag
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_END', 6);
/**
* empty tag
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_STARTEND', 7);
/**
* CDATA
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_CDATA', 8);
/**
* XML section
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_SECTION', 9);
/**
* ASP code
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_ASP', 10);
/**
* JSTE code
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_JSTE', 11);
/**
* PHP code
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_PHP', 12);
/**
* XML declaration
* @link http://php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_XMLDECL', 13);
// End of tidy v.7.0.4-7ubuntu2
?>