@@ -417,8 +417,8 @@ discard block |
||
417 | 417 | $tmpStr = $this->normalizeStringForComparision($string); |
418 | 418 | if ($tmpDomString !== $tmpStr) { |
419 | 419 | throw new \RuntimeException( |
420 | - 'Not valid HTML fragment!' . "\n" . |
|
421 | - $tmpDomString . "\n" . |
|
420 | + 'Not valid HTML fragment!'."\n". |
|
421 | + $tmpDomString."\n". |
|
422 | 422 | $tmpStr |
423 | 423 | ); |
424 | 424 | } |
@@ -490,8 +490,8 @@ discard block |
||
490 | 490 | $tmpStr = $this->normalizeStringForComparision($string); |
491 | 491 | if ($tmpDomOuterTextString !== $tmpStr) { |
492 | 492 | throw new \RuntimeException( |
493 | - 'Not valid HTML fragment!' . "\n" |
|
494 | - . $tmpDomOuterTextString . "\n" . |
|
493 | + 'Not valid HTML fragment!'."\n" |
|
494 | + . $tmpDomOuterTextString."\n". |
|
495 | 495 | $tmpStr |
496 | 496 | ); |
497 | 497 | } |
@@ -417,8 +417,8 @@ discard block |
||
417 | 417 | $tmpStr = $this->normalizeStringForComparision($string); |
418 | 418 | if ($tmpDomString !== $tmpStr) { |
419 | 419 | throw new \RuntimeException( |
420 | - 'Not valid HTML fragment!' . "\n" . |
|
421 | - $tmpDomString . "\n" . |
|
420 | + 'Not valid HTML fragment!'."\n". |
|
421 | + $tmpDomString."\n". |
|
422 | 422 | $tmpStr |
423 | 423 | ); |
424 | 424 | } |
@@ -490,8 +490,8 @@ discard block |
||
490 | 490 | $tmpStr = $this->normalizeStringForComparision($string); |
491 | 491 | if ($tmpDomOuterTextString !== $tmpStr) { |
492 | 492 | throw new \RuntimeException( |
493 | - 'Not valid HTML fragment!' . "\n" |
|
494 | - . $tmpDomOuterTextString . "\n" . |
|
493 | + 'Not valid HTML fragment!'."\n" |
|
494 | + . $tmpDomOuterTextString."\n". |
|
495 | 495 | $tmpStr |
496 | 496 | ); |
497 | 497 | } |
@@ -151,7 +151,7 @@ |
||
151 | 151 | /** @noinspection StringFragmentMisplacedInspection */ |
152 | 152 | if (\stripos('<?xml', $xml) !== 0) { |
153 | 153 | $xmlHackUsed = true; |
154 | - $xml = '<?xml encoding="' . $this->getEncoding() . '" ?>' . $xml; |
|
154 | + $xml = '<?xml encoding="'.$this->getEncoding().'" ?>'.$xml; |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | $this->document->loadXML($xml, $optionsXml); |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | return \call_user_func_array([$this, self::$functionAliases[$name]], $arguments); |
84 | 84 | } |
85 | 85 | |
86 | - throw new \BadMethodCallException('Method does not exist: ' . $name); |
|
86 | + throw new \BadMethodCallException('Method does not exist: '.$name); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
@@ -389,12 +389,12 @@ discard block |
||
389 | 389 | $regExSpecialScript = '/<(script)(?<attr>[^>]*)>(?<content>.*)<\/\1>/isU'; |
390 | 390 | $htmlTmp = \preg_replace_callback( |
391 | 391 | $regExSpecialScript, |
392 | - static function ($scripts) { |
|
392 | + static function($scripts) { |
|
393 | 393 | if (empty($scripts['content'])) { |
394 | 394 | return $scripts[0]; |
395 | 395 | } |
396 | 396 | |
397 | - return '<script' . $scripts['attr'] . '>' . \str_replace('</', '<\/', $scripts['content']) . '</script>'; |
|
397 | + return '<script'.$scripts['attr'].'>'.\str_replace('</', '<\/', $scripts['content']).'</script>'; |
|
398 | 398 | }, |
399 | 399 | $html |
400 | 400 | ); |
@@ -423,14 +423,14 @@ discard block |
||
423 | 423 | self::$domReplaceHelper['orig'] |
424 | 424 | ); |
425 | 425 | |
426 | - $DOM_REPLACE__HELPER_CACHE['tmp']['html_wrapper__start'] = '<' . self::$domHtmlWrapperHelper . '>'; |
|
427 | - $DOM_REPLACE__HELPER_CACHE['tmp']['html_wrapper__end'] = '</' . self::$domHtmlWrapperHelper . '>'; |
|
426 | + $DOM_REPLACE__HELPER_CACHE['tmp']['html_wrapper__start'] = '<'.self::$domHtmlWrapperHelper.'>'; |
|
427 | + $DOM_REPLACE__HELPER_CACHE['tmp']['html_wrapper__end'] = '</'.self::$domHtmlWrapperHelper.'>'; |
|
428 | 428 | |
429 | 429 | $DOM_REPLACE__HELPER_CACHE['orig']['html_wrapper__start'] = ''; |
430 | 430 | $DOM_REPLACE__HELPER_CACHE['orig']['html_wrapper__end'] = ''; |
431 | 431 | |
432 | - $DOM_REPLACE__HELPER_CACHE['tmp']['html_special_script__start'] = '<' . self::$domHtmlSpecialScriptHelper; |
|
433 | - $DOM_REPLACE__HELPER_CACHE['tmp']['html_special_script__end'] = '</' . self::$domHtmlSpecialScriptHelper . '>'; |
|
432 | + $DOM_REPLACE__HELPER_CACHE['tmp']['html_special_script__start'] = '<'.self::$domHtmlSpecialScriptHelper; |
|
433 | + $DOM_REPLACE__HELPER_CACHE['tmp']['html_special_script__end'] = '</'.self::$domHtmlSpecialScriptHelper.'>'; |
|
434 | 434 | |
435 | 435 | $DOM_REPLACE__HELPER_CACHE['orig']['html_special_script__start'] = '<script'; |
436 | 436 | $DOM_REPLACE__HELPER_CACHE['orig']['html_special_script__end'] = '</script>'; |
@@ -65,7 +65,7 @@ |
||
65 | 65 | return (string) $this; |
66 | 66 | } |
67 | 67 | |
68 | - throw new \InvalidArgumentException('Undefined property: $' . $name); |
|
68 | + throw new \InvalidArgumentException('Undefined property: $'.$name); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
@@ -41,5 +41,5 @@ |
||
41 | 41 | $document = new \voku\helper\HtmlDomParser($html); |
42 | 42 | |
43 | 43 | foreach (find_contains($document, '.lall', 'foo') as $child_dom) { |
44 | - echo $child_dom->html() . "\n"; |
|
44 | + echo $child_dom->html()."\n"; |
|
45 | 45 | } |
@@ -24,5 +24,5 @@ |
||
24 | 24 | $data = scraping_imdb('http://imdb.com/title/tt0335266/'); |
25 | 25 | |
26 | 26 | foreach ($data as $k => $v) { |
27 | - echo '<strong>' . $k . ' </strong>' . $v . '<br>'; |
|
27 | + echo '<strong>'.$k.' </strong>'.$v.'<br>'; |
|
28 | 28 | } |
@@ -34,6 +34,6 @@ |
||
34 | 34 | |
35 | 35 | foreach ($data as $v) { |
36 | 36 | foreach ($v as $k_inner => $v_inner) { |
37 | - echo '<strong>' . $k_inner . ':</strong> ' . $v_inner . '<br><br>'; |
|
37 | + echo '<strong>'.$k_inner.':</strong> '.$v_inner.'<br><br>'; |
|
38 | 38 | } |
39 | 39 | } |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | HTML; |
16 | 16 | |
17 | 17 | $html = HtmlDomParser::str_get_html($str); |
18 | -echo $html->find('div div div', 0)->innertext . '<br>'; // result: "ok" |
|
18 | +echo $html->find('div div div', 0)->innertext.'<br>'; // result: "ok" |
|
19 | 19 | |
20 | 20 | // ----------------------------------------------------------------------------- |
21 | 21 | // nested selector |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $html = HtmlDomParser::str_get_html($str); |
34 | 34 | foreach ($html->find('ul') as $ul) { |
35 | 35 | foreach ($ul->find('li') as $li) { |
36 | - echo $li->innertext . '<br>'; |
|
36 | + echo $li->innertext.'<br>'; |
|
37 | 37 | } |
38 | 38 | } |
39 | 39 | |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | $html = HtmlDomParser::str_get_html($str); |
51 | 51 | foreach ($html->find('input[type=checkbox]') as $checkbox) { |
52 | 52 | if ($checkbox->checked) { |
53 | - echo $checkbox->name . ' is checked<br>'; |
|
53 | + echo $checkbox->name.' is checked<br>'; |
|
54 | 54 | } else { |
55 | - echo $checkbox->name . ' is not checked<br>'; |
|
55 | + echo $checkbox->name.' is not checked<br>'; |
|
56 | 56 | } |
57 | 57 | } |