| | |
| | | } |
| | | $this->context = $context->item(0); |
| | | |
| | | $name = $this->xpath->query('.//h2[@class="sh2"]//span//text()', $this->context); |
| | | $name = $this->xpath->query('.//*[@class="sh2"]//span//text()', $this->context); |
| | | if($name->length != 1) { |
| | | throw new Exception('Nie znaleziono nazwy stacji, błędny HTML.'); |
| | | } |
| | |
| | | $nazwa = $this->xpath->query('.//h3', $programs)->item(0)->textContent; |
| | | $opis = $this->xpath->query('.//p', $programs)->item(0)->textContent; |
| | | |
| | | $program[$num][] = array( |
| | | $godzina, |
| | | $nazwa, |
| | | $opis |
| | | ); |
| | | $program[$num][] = array($godzina, $nazwa, $opis); |
| | | } |
| | | unset($programs_dom, $programs); |
| | | } |
| | |
| | | } |
| | | } |
| | | } |
| | | ?> |
| | | ?> |