Poprawka parsowania programu telewizyjnego - filtrowanie znaków UTF-8 ze względu na problemy z kodowaniem na stronach WP
| | |
| | | function xmltv($id, $fp) { |
| | | $program = array(); |
| | | |
| | | ini_set('mbstring.substitute_character', 'none'); |
| | | |
| | | $days_dom = $this->xpath->query('.//ul[@class="lsDay"]//li', $this->context); |
| | | $days = array(); |
| | | foreach($days_dom as $day) { |
| | |
| | | $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, |
| | | mb_convert_encoding($nazwa, 'UTF-8', 'UTF-8'), |
| | | mb_convert_encoding($opis, 'UTF-8', 'UTF-8') |
| | | ); |
| | | } |
| | | unset($programs_dom, $programs); |
| | | } |
| | |
| | | } |
| | | } |
| | | } |
| | | ?> |
| | | ?> |