forked from simplehtmldom/simplehtmldom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsimple_html_dom.php
213 lines (189 loc) · 4.85 KB
/
simple_html_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
<?php
use simplehtmldom\HtmlDocument;
use simplehtmldom\HtmlNode;
/**
* Website: http://sourceforge.net/projects/simplehtmldom/
* Acknowledge: Jose Solorzano (https://sourceforge.net/projects/php-html/)
*
* Licensed under The MIT License
* See the LICENSE file in the project root for more information.
*
* Authors:
* S.C. Chen
* John Schlick
* Rus Carroll
* logmanoriginal
*
* Contributors:
* Yousuke Kumakura
* Vadim Voituk
* Antcs
*
* Version $Rev$
*/
if (defined('DEFAULT_TARGET_CHARSET')) {
/** */
define('simplehtmldom\DEFAULT_TARGET_CHARSET', DEFAULT_TARGET_CHARSET);
}
if (defined('DEFAULT_BR_TEXT')) {
/** */
define('simplehtmldom\DEFAULT_BR_TEXT', DEFAULT_BR_TEXT);
}
if (defined('DEFAULT_SPAN_TEXT')) {
/** */
define('simplehtmldom\DEFAULT_SPAN_TEXT', DEFAULT_SPAN_TEXT);
}
if (defined('MAX_FILE_SIZE')) {
/** */
define('simplehtmldom\MAX_FILE_SIZE', MAX_FILE_SIZE);
}
require_once __DIR__ . '/HtmlDocument.php';
require_once __DIR__ . '/HtmlNode.php';
if (! defined('DEFAULT_TARGET_CHARSET')) {
/** */
define('DEFAULT_TARGET_CHARSET', \simplehtmldom\DEFAULT_TARGET_CHARSET);
}
if (! defined('DEFAULT_BR_TEXT')) {
/** */
define('DEFAULT_BR_TEXT', \simplehtmldom\DEFAULT_BR_TEXT);
}
if (! defined('DEFAULT_SPAN_TEXT')) {
/** */
define('DEFAULT_SPAN_TEXT', \simplehtmldom\DEFAULT_SPAN_TEXT);
}
if (! defined('MAX_FILE_SIZE')) {
/** */
define('MAX_FILE_SIZE', \simplehtmldom\MAX_FILE_SIZE);
}
/** */
const HDOM_TYPE_ELEMENT = HtmlNode::HDOM_TYPE_ELEMENT;
/** */
const HDOM_TYPE_COMMENT = HtmlNode::HDOM_TYPE_COMMENT;
/** */
const HDOM_TYPE_TEXT = HtmlNode::HDOM_TYPE_TEXT;
/** */
const HDOM_TYPE_ROOT = HtmlNode::HDOM_TYPE_ROOT;
/** */
const HDOM_TYPE_UNKNOWN = HtmlNode::HDOM_TYPE_UNKNOWN;
/** */
const HDOM_QUOTE_DOUBLE = HtmlNode::HDOM_QUOTE_DOUBLE;
/** */
const HDOM_QUOTE_SINGLE = HtmlNode::HDOM_QUOTE_SINGLE;
/** */
const HDOM_QUOTE_NO = HtmlNode::HDOM_QUOTE_NO;
/** */
const HDOM_INFO_BEGIN = HtmlNode::HDOM_INFO_BEGIN;
/** */
const HDOM_INFO_END = HtmlNode::HDOM_INFO_END;
/** */
const HDOM_INFO_QUOTE = HtmlNode::HDOM_INFO_QUOTE;
/** */
const HDOM_INFO_SPACE = HtmlNode::HDOM_INFO_SPACE;
/** */
const HDOM_INFO_TEXT = HtmlNode::HDOM_INFO_TEXT;
/** */
const HDOM_INFO_INNER = HtmlNode::HDOM_INFO_INNER;
/** */
const HDOM_INFO_OUTER = HtmlNode::HDOM_INFO_OUTER;
/** */
const HDOM_INFO_ENDSPACE = HtmlNode::HDOM_INFO_ENDSPACE;
/** */
const HDOM_SMARTY_AS_TEXT = \simplehtmldom\HDOM_SMARTY_AS_TEXT;
class_alias(HtmlDocument::class, 'simple_html_dom');
class_alias(HtmlNode::class, 'simple_html_dom_node');
/**
* @param string $url
* @param bool $use_include_path
* @param resource|null $context
* @param int $offset
* @param int $maxLen
* @param bool $lowercase
* @param bool $forceTagsClosed
* @param string $target_charset
* @param bool $stripRN
* @param string $defaultBRText
* @param string $defaultSpanText
* @return false|simple_html_dom
*/
function file_get_html(
$url,
$use_include_path = false,
$context = null,
$offset = 0,
$maxLen = -1,
$lowercase = true,
$forceTagsClosed = true,
$target_charset = DEFAULT_TARGET_CHARSET,
$stripRN = true,
$defaultBRText = DEFAULT_BR_TEXT,
$defaultSpanText = DEFAULT_SPAN_TEXT
) {
if ($maxLen <= 0) {
$maxLen = MAX_FILE_SIZE;
}
$dom = new simple_html_dom(
null,
$lowercase,
$forceTagsClosed,
$target_charset,
$stripRN,
$defaultBRText,
$defaultSpanText
);
$contents = file_get_contents(
$url,
$use_include_path,
$context,
$offset,
$maxLen + 1 // Load extra byte for limit check
);
if (empty($contents) || strlen($contents) > $maxLen) {
$dom->clear();
return false;
}
return $dom->load($contents, $lowercase, $stripRN);
}
/**
* @param string $str
* @param bool $lowercase
* @param bool $forceTagsClosed
* @param string $target_charset
* @param bool $stripRN
* @param string $defaultBRText
* @param string $defaultSpanText
* @return false|simple_html_dom
*/
function str_get_html(
$str,
$lowercase = true,
$forceTagsClosed = true,
$target_charset = DEFAULT_TARGET_CHARSET,
$stripRN = true,
$defaultBRText = DEFAULT_BR_TEXT,
$defaultSpanText = DEFAULT_SPAN_TEXT
) {
$dom = new simple_html_dom(
null,
$lowercase,
$forceTagsClosed,
$target_charset,
$stripRN,
$defaultBRText,
$defaultSpanText
);
if (empty($str) || strlen($str) > MAX_FILE_SIZE) {
$dom->clear();
return false;
}
return $dom->load($str, $lowercase, $stripRN);
}
/**
* @param HtmlNode $node
* @param bool $show_attr
* @param int $deep
* @codeCoverageIgnore
*/
function dump_html_tree($node, $show_attr = true, $deep = 0)
{
$node->dump($show_attr, $deep);
}