forked from spyrosoft/php-format-html-output
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathformat.php
418 lines (379 loc) · 10.1 KB
/
format.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
<?php
/**
* Format HTML class
*/
class Format
{
/*
* @var
*/
private $input = null;
/*
* @var
*/
private $output = null;
/*
* @var
*/
private $in_tag = false;
/*
* @var
*/
private $in_comment = false;
/*
* @var
*/
private $in_content = false;
/*
* @var
*/
private $inline_tag = false;
/*
* @var
*/
private $i = 0;
/*
* @var
*/
private $indent_depth = 0;
/*
* @var
*/
private $indent_type = "\t";
/**
* Static interface
* - Allows you to call the method witout initialising the class first
*
* <code>
* // use spaces at 4 length
* echo Format::HTML('Unformatted HTML string');
*
* // use spaces at 2 length
* echo Format::HTML('Unformatted HTML string', true, 2);
*
* // use tabs
* echo Format::HTML('Unformatted HTML string', false);
* </code>
*
* @param string $input HTML which is to be processed
* @param bool $use_spaces Use spaces instead of tabs
* @param int $indent_length Length of indent spacing
* @return string
*/
public static function HTML($input, $use_spaces = true, $indent_length = 4)
{
return (new self)->process($input, $use_spaces, $indent_length);
}
/**
* Process/Format HTML
*
* <code>
* $format = new Format();
*
* // use spaces at 4 length
* echo $format->HTML('Unformatted HTML string');
*
* // use spaces at 2 length
* echo $format->HTML('Unformatted HTML string', true, 2);
*
* // use tabs
* echo $format->HTML('Unformatted HTML string', false);
* </code>
*
* @param string $input HTML which is to be processed
* @param bool $use_spaces Use spaces instead of tabs
* @param int $indent_length Length of indent spacing
* @return string
*/
private function process($input, $use_spaces = true, $indent_length = 4)
{
if (!is_string($input)) {
throw new \InvalidArgumentException('1st argument must be a string');
}
if (!is_int($indent_length)) {
throw new \InvalidArgumentException('3rd argument must be an integer');
}
if ($indent_length < 0) {
throw new \InvalidArgumentException('3rd argument must be greater or equals 0');
}
if ($use_spaces) {
$this->indent_type = str_repeat(' ', $indent_length);
}
$this->input = $input;
$this->output = null;
$i = 0;
if (preg_match('/<\!doctype/i', $this->input)) {
$i = strpos($this->input, '>') + 1;
$this->output .= substr($this->input, 0, $i);
}
for ($this->i = $i; $this->i < strlen($this->input); $this->i++) {
if ($this->in_comment) {
$this->parse_comment();
} elseif ($this->in_tag) {
$this->parse_inner_tag();
} elseif ($this->inline_tag) {
$this->parse_inner_inline_tag();
} else {
if (preg_match('/[\r\n\t]/', $this->input[$this->i])) {
continue;
} elseif ($this->input[$this->i] == '<') {
if (!$this->is_inline_tag()) {
$this->in_content = false;
}
$this->parse_tag();
} elseif (!$this->in_content) {
if (!$this->inline_tag) {
$this->output .= "\n" . str_repeat($this->indent_type, $this->indent_depth);
}
$this->in_content = true;
}
$this->output .= $this->input[$this->i];
}
}
return $this->output;
}
/**
* @return void
*/
private function parse_comment()
{
if ($this->is_end_comment()) {
$this->in_comment = false;
$this->output .= '-->';
$this->i += 3;
} else {
$this->output .= $this->input[$this->i];
}
}
/**
* @return void
*/
private function parse_inner_tag()
{
if ($this->input[$this->i] == '>') {
$this->in_tag = false;
$this->output .= '>';
} else {
$this->output .= $this->input[$this->i];
}
}
/**
* @return void
*/
private function parse_inner_inline_tag()
{
if ($this->input[$this->i] == '>') {
$this->inline_tag = false;
$this->decrement_tabs();
$this->output .= '>';
} else {
$this->output .= $this->input[$this->i];
}
}
/**
* @return void
*/
private function parse_tag()
{
if ($this->is_comment()) {
$this->output .= "\n" . str_repeat($this->indent_type, $this->indent_depth);
$this->in_comment = true;
} elseif ($this->is_end_tag()) {
$this->in_tag = true;
$this->inline_tag = false;
$this->decrement_tabs();
if (!$this->is_inline_tag() && !$this->is_tag_empty()) {
$this->output .= "\n" . str_repeat($this->indent_type, $this->indent_depth);
}
} else {
$this->in_tag = true;
if (!$this->in_content && !$this->inline_tag) {
$this->output .= "\n" . str_repeat($this->indent_type, $this->indent_depth);
}
if (!$this->is_closed_tag()) {
$this->indent_depth++;
}
if ($this->is_inline_tag()) {
$this->inline_tag = true;
}
}
}
/**
* @return bool
*/
private function is_end_tag()
{
for ($i = $this->i; $i < strlen($this->input); $i++) {
if ($this->input[$i] == '<' && $this->input[$i + 1] == '/') {
return true;
} elseif ($this->input[$i] == '<' && $this->input[$i + 1] == '!') {
return true;
} elseif ($this->input[$i] == '>') {
return false;
}
}
return false;
}
/**
* @return void
*/
private function decrement_tabs()
{
$this->indent_depth--;
if ($this->indent_depth < 0) {
$this->indent_depth = 0;
}
}
/**
* @return bool
*/
private function is_comment()
{
if (
$this->input[$this->i] == '<' &&
$this->input[$this->i + 1] == '!' &&
$this->input[$this->i + 2] == '-' &&
$this->input[$this->i + 3] == '-'
) {
return true;
} else {
return false;
}
}
/**
* @return bool
*/
private function is_end_comment()
{
if (
$this->input[$this->i] == '-' &&
$this->input[$this->i + 1] == '-' &&
$this->input[$this->i + 2] == '>'
) {
return true;
} else {
return false;
}
}
/**
* @return bool
*/
private function is_tag_empty()
{
$tag = $this->get_current_tag($this->i + 2);
$in_tag = false;
for ($i = $this->i - 1; $i >= 0; $i--) {
if (!$in_tag) {
if ($this->input[$i] == '>') {
$in_tag = true;
} elseif (!preg_match('/\s/', $this->input[$i])) {
return false;
}
} else {
if ($this->input[$i] == '<') {
if ($tag == $this->get_current_tag($i + 1)) {
return true;
} else {
return false;
}
}
}
}
return true;
}
/**
* @param int $i String index of input
* @return string
*/
private function get_current_tag($i)
{
$tag = '';
for ($i; $i < strlen($this->input); $i++) {
if ($this->input[$i] == '<') {
continue;
} elseif ($this->input[$i] == '>' or preg_match('/\s/', $this->input[$i])) {
return $tag;
} else {
$tag .= $this->input[$i];
}
}
return $tag;
}
/**
* @return bool
*/
private function is_closed_tag()
{
$tags = array(
'meta', 'link', 'img', 'hr', 'br', 'input',
);
$tag = '';
for ($i = $this->i; $i < strlen($this->input); $i++) {
if ($this->input[$i] == '<') {
continue;
} elseif (preg_match('/\s/', $this->input[$i])) {
break;
} else {
$tag .= $this->input[$i];
}
}
if (in_array($tag, $tags)) {
return true;
} else {
return false;
}
}
/**
* @return bool
*/
private function is_inline_tag()
{
$tags = array(
'title',
'a',
'span',
'abbr',
'acronym',
'b',
'basefont',
'bdo',
'big',
'cite',
'code',
'dfn',
'em',
'font',
'i',
'kbd',
'q',
's',
'samp',
'small',
'strike',
'strong',
'sub',
'sup',
'textarea',
'tt',
'u',
'var',
'del',
'pre'
);
$tag = '';
for ($i = $this->i; $i < strlen($this->input); $i++) {
if ($this->input[$i] == '<' or $this->input[$i] == '/') {
continue;
} elseif (preg_match('/\s/', $this->input[$i]) or $this->input[$i] == '>') {
break;
} else {
$tag .= $this->input[$i];
}
}
if (in_array($tag, $tags)) {
return true;
} else {
return false;
}
}
}