@@ -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 | } |
@@ -9,36 +9,36 @@ |
||
| 9 | 9 | |
| 10 | 10 | // find all link |
| 11 | 11 | foreach ($html->find('a') as $e) { |
| 12 | - echo $e->href . '<br>'; |
|
| 12 | + echo $e->href.'<br>'; |
|
| 13 | 13 | } |
| 14 | 14 | |
| 15 | 15 | // find all image |
| 16 | 16 | foreach ($html->find('img') as $e) { |
| 17 | - echo $e->src . '<br>'; |
|
| 17 | + echo $e->src.'<br>'; |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | // find all image with full tag |
| 21 | 21 | foreach ($html->find('img') as $e) { |
| 22 | - echo $e->outertext . '<br>'; |
|
| 22 | + echo $e->outertext.'<br>'; |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | // find all div tags with id=gbar |
| 26 | 26 | foreach ($html->find('div#gbar') as $e) { |
| 27 | - echo $e->innertext . '<br>'; |
|
| 27 | + echo $e->innertext.'<br>'; |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | // find all span tags with class=gb1 |
| 31 | 31 | foreach ($html->find('span.gb1') as $e) { |
| 32 | - echo $e->outertext . '<br>'; |
|
| 32 | + echo $e->outertext.'<br>'; |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | // find all td tags with attribite align=center |
| 36 | 36 | foreach ($html->find('td[align=center]') as $e) { |
| 37 | - echo $e->innertext . '<br>'; |
|
| 37 | + echo $e->innertext.'<br>'; |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | // extract text from table |
| 41 | -echo $html->find('td[align="center"]', 1)->plaintext . '<br><hr>'; |
|
| 41 | +echo $html->find('td[align="center"]', 1)->plaintext.'<br><hr>'; |
|
| 42 | 42 | |
| 43 | 43 | // extract text from HTML |
| 44 | 44 | echo $html->plaintext; |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | /** @noinspection ExceptionsAnnotatingAndHandlingInspection */ |
| 150 | - throw new BadMethodCallException('Method does not exist: ' . $name); |
|
| 150 | + throw new BadMethodCallException('Method does not exist: '.$name); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | /** |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | |
| 265 | 265 | if (!empty($linksOld[1])) { |
| 266 | 266 | $linksOld = $linksOld[1]; |
| 267 | - foreach ((array)$linksOld as $linkKey => $linkOld) { |
|
| 267 | + foreach ((array) $linksOld as $linkKey => $linkOld) { |
|
| 268 | 268 | $linksNew[$linkKey] = str_replace( |
| 269 | 269 | self::$domLinkReplaceHelper['orig'], |
| 270 | 270 | self::$domLinkReplaceHelper['tmp'], |
@@ -367,7 +367,7 @@ discard block |
||
| 367 | 367 | $xmlHackUsed = false; |
| 368 | 368 | if (stripos('<?xml', $html) !== 0) { |
| 369 | 369 | $xmlHackUsed = true; |
| 370 | - $html = '<?xml encoding="' . $this->getEncoding() . '" ?>' . $html; |
|
| 370 | + $html = '<?xml encoding="'.$this->getEncoding().'" ?>'.$html; |
|
| 371 | 371 | } |
| 372 | 372 | |
| 373 | 373 | $html = self::replaceToPreserveHtmlEntities($html); |
@@ -680,7 +680,7 @@ discard block |
||
| 680 | 680 | public function loadHtml($html, $libXMLExtraOptions = null) |
| 681 | 681 | { |
| 682 | 682 | if (!is_string($html)) { |
| 683 | - throw new InvalidArgumentException(__METHOD__ . ' expects parameter 1 to be string.'); |
|
| 683 | + throw new InvalidArgumentException(__METHOD__.' expects parameter 1 to be string.'); |
|
| 684 | 684 | } |
| 685 | 685 | |
| 686 | 686 | $this->document = $this->createDOMDocument($html, $libXMLExtraOptions); |
@@ -702,7 +702,7 @@ discard block |
||
| 702 | 702 | public function loadHtmlFile($filePath, $libXMLExtraOptions = null) |
| 703 | 703 | { |
| 704 | 704 | if (!is_string($filePath)) { |
| 705 | - throw new InvalidArgumentException(__METHOD__ . ' expects parameter 1 to be string.'); |
|
| 705 | + throw new InvalidArgumentException(__METHOD__.' expects parameter 1 to be string.'); |
|
| 706 | 706 | } |
| 707 | 707 | |
| 708 | 708 | if (!preg_match("/^https?:\/\//i", $filePath) && !file_exists($filePath)) { |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | /** |
| 391 | 391 | * Determine if an attribute exists on the element. |
| 392 | 392 | * |
| 393 | - * @param $name |
|
| 393 | + * @param string $name |
|
| 394 | 394 | * |
| 395 | 395 | * @return bool |
| 396 | 396 | */ |
@@ -696,7 +696,7 @@ discard block |
||
| 696 | 696 | * |
| 697 | 697 | * @param $name <p>The name of the html-attribute.</p> |
| 698 | 698 | * |
| 699 | - * @return mixed |
|
| 699 | + * @return SimpleHtmlDom |
|
| 700 | 700 | */ |
| 701 | 701 | public function removeAttribute($name) |
| 702 | 702 | { |
@@ -565,7 +565,7 @@ |
||
| 565 | 565 | $string = str_replace(array('<head>', '</head>'), '', $string); |
| 566 | 566 | } |
| 567 | 567 | } else { |
| 568 | - $string = (string)$input; |
|
| 568 | + $string = (string) $input; |
|
| 569 | 569 | } |
| 570 | 570 | |
| 571 | 571 | return |