|
@@ -167,7 +167,7 @@ discard block |
|
|
block discarded – undo |
|
167
|
167
|
return \call_user_func_array([$this, self::$functionAliases[$name]], $arguments); |
|
168
|
168
|
} |
|
169
|
169
|
|
|
170
|
|
- throw new \BadMethodCallException('Method does not exist: ' . $name); |
|
|
170
|
+ throw new \BadMethodCallException('Method does not exist: '.$name); |
|
171
|
171
|
} |
|
172
|
172
|
|
|
173
|
173
|
/** |
|
@@ -318,14 +318,14 @@ discard block |
|
|
block discarded – undo |
|
318
|
318
|
self::$domReplaceHelper['orig'] |
|
319
|
319
|
); |
|
320
|
320
|
|
|
321
|
|
- $DOM_REPLACE__HELPER_CACHE['tmp']['html_wrapper__start'] = '<' . self::$domHtmlWrapperHelper . '>'; |
|
322
|
|
- $DOM_REPLACE__HELPER_CACHE['tmp']['html_wrapper__end'] = '</' . self::$domHtmlWrapperHelper . '>'; |
|
|
321
|
+ $DOM_REPLACE__HELPER_CACHE['tmp']['html_wrapper__start'] = '<'.self::$domHtmlWrapperHelper.'>'; |
|
|
322
|
+ $DOM_REPLACE__HELPER_CACHE['tmp']['html_wrapper__end'] = '</'.self::$domHtmlWrapperHelper.'>'; |
|
323
|
323
|
|
|
324
|
324
|
$DOM_REPLACE__HELPER_CACHE['orig']['html_wrapper__start'] = ''; |
|
325
|
325
|
$DOM_REPLACE__HELPER_CACHE['orig']['html_wrapper__end'] = ''; |
|
326
|
326
|
|
|
327
|
|
- $DOM_REPLACE__HELPER_CACHE['tmp']['html_special_script__start'] = '<' . self::$domHtmlSpecialScriptHelper; |
|
328
|
|
- $DOM_REPLACE__HELPER_CACHE['tmp']['html_special_script__end'] = '</' . self::$domHtmlSpecialScriptHelper . '>'; |
|
|
327
|
+ $DOM_REPLACE__HELPER_CACHE['tmp']['html_special_script__start'] = '<'.self::$domHtmlSpecialScriptHelper; |
|
|
328
|
+ $DOM_REPLACE__HELPER_CACHE['tmp']['html_special_script__end'] = '</'.self::$domHtmlSpecialScriptHelper.'>'; |
|
329
|
329
|
|
|
330
|
330
|
$DOM_REPLACE__HELPER_CACHE['orig']['html_special_script__start'] = '<script'; |
|
331
|
331
|
$DOM_REPLACE__HELPER_CACHE['orig']['html_special_script__end'] = '</script>'; |
|
@@ -415,7 +415,7 @@ discard block |
|
|
block discarded – undo |
|
415
|
415
|
|| |
|
416
|
416
|
$this->keepBrokenHtml |
|
417
|
417
|
) { |
|
418
|
|
- $html = '<' . self::$domHtmlWrapperHelper . '>' . $html . '</' . self::$domHtmlWrapperHelper . '>'; |
|
|
418
|
+ $html = '<'.self::$domHtmlWrapperHelper.'>'.$html.'</'.self::$domHtmlWrapperHelper.'>'; |
|
419
|
419
|
} |
|
420
|
420
|
|
|
421
|
421
|
$html = self::replaceToPreserveHtmlEntities($html); |
|
@@ -429,7 +429,7 @@ discard block |
|
|
block discarded – undo |
|
429
|
429
|
$xmlHackUsed = false; |
|
430
|
430
|
if (\stripos('<?xml', $html) !== 0) { |
|
431
|
431
|
$xmlHackUsed = true; |
|
432
|
|
- $html = '<?xml encoding="' . $this->getEncoding() . '" ?>' . $html; |
|
|
432
|
+ $html = '<?xml encoding="'.$this->getEncoding().'" ?>'.$html; |
|
433
|
433
|
} |
|
434
|
434
|
|
|
435
|
435
|
$this->document->loadHTML($html, $optionsXml); |
|
@@ -470,8 +470,8 @@ discard block |
|
|
block discarded – undo |
|
470
|
470
|
|
|
471
|
471
|
if (isset($specialScripts[0])) { |
|
472
|
472
|
foreach ($specialScripts[0] as $specialScript) { |
|
473
|
|
- $specialNonScript = '<' . self::$domHtmlSpecialScriptHelper . substr($specialScript, strlen('<script')); |
|
474
|
|
- $specialNonScript = substr($specialNonScript, 0, -strlen('</script>')) . '</' . self::$domHtmlSpecialScriptHelper . '>'; |
|
|
473
|
+ $specialNonScript = '<'.self::$domHtmlSpecialScriptHelper.substr($specialScript, strlen('<script')); |
|
|
474
|
+ $specialNonScript = substr($specialNonScript, 0, -strlen('</script>')).'</'.self::$domHtmlSpecialScriptHelper.'>'; |
|
475
|
475
|
|
|
476
|
476
|
$html = \str_replace($specialScript, $specialNonScript, $html); |
|
477
|
477
|
} |
|
@@ -490,11 +490,11 @@ discard block |
|
|
block discarded – undo |
|
490
|
490
|
|
|
491
|
491
|
$html = (string) \preg_replace_callback( |
|
492
|
492
|
'/(?<start>.*)<(?<element_start>[a-z]+)(?<element_start_addon> [^>]*)?>(?<value>.*?)<\/(?<element_end>\2)>(?<end>.*)/sui', |
|
493
|
|
- function ($matches) { |
|
494
|
|
- return $matches['start'] . |
|
495
|
|
- '°lt_simple_html_dom__voku_°' . $matches['element_start'] . $matches['element_start_addon'] . '°gt_simple_html_dom__voku_°' . |
|
496
|
|
- $matches['value'] . |
|
497
|
|
- '°lt/_simple_html_dom__voku_°' . $matches['element_end'] . '°gt_simple_html_dom__voku_°' . |
|
|
493
|
+ function($matches) { |
|
|
494
|
+ return $matches['start']. |
|
|
495
|
+ '°lt_simple_html_dom__voku_°'.$matches['element_start'].$matches['element_start_addon'].'°gt_simple_html_dom__voku_°'. |
|
|
496
|
+ $matches['value']. |
|
|
497
|
+ '°lt/_simple_html_dom__voku_°'.$matches['element_end'].'°gt_simple_html_dom__voku_°'. |
|
498
|
498
|
$matches['end']; |
|
499
|
499
|
}, |
|
500
|
500
|
$html |
|
@@ -506,7 +506,7 @@ discard block |
|
|
block discarded – undo |
|
506
|
506
|
|
|
507
|
507
|
$html = (string) \preg_replace_callback( |
|
508
|
508
|
'/(?<start>[^<]*)?(?<broken>(?:(?:<\/\w+(?:\s+\w+=\\"[^\"]+\\")*+)(?:[^<]+)>)+)(?<end>.*)/u', |
|
509
|
|
- function ($matches) { |
|
|
509
|
+ function($matches) { |
|
510
|
510
|
$matches['broken'] = \str_replace( |
|
511
|
511
|
['°lt/_simple_html_dom__voku_°', '°lt_simple_html_dom__voku_°', '°gt_simple_html_dom__voku_°'], |
|
512
|
512
|
['</', '<', '>'], |
|
@@ -514,9 +514,9 @@ discard block |
|
|
block discarded – undo |
|
514
|
514
|
); |
|
515
|
515
|
|
|
516
|
516
|
self::$domBrokenReplaceHelper['orig'][] = $matches['broken']; |
|
517
|
|
- self::$domBrokenReplaceHelper['tmp'][] = $matchesHash = '____simple_html_dom__voku__broken_html____' . \crc32($matches['broken']); |
|
|
517
|
+ self::$domBrokenReplaceHelper['tmp'][] = $matchesHash = '____simple_html_dom__voku__broken_html____'.\crc32($matches['broken']); |
|
518
|
518
|
|
|
519
|
|
- return $matches['start'] . $matchesHash . $matches['end']; |
|
|
519
|
+ return $matches['start'].$matchesHash.$matches['end']; |
|
520
|
520
|
}, |
|
521
|
521
|
$html |
|
522
|
522
|
); |