Dva workarounda za problem:
Kôd:
<?php
$buf = file_get_contents("http://www.blogowski.eu/feed/");
$buf = str_replace("\xc5\x20","Š", $buf);
$buf = str_replace("\xc3\x20","", $buf);
print $buf;
i malo univerzalnije reshenje, koje ce sigurno da pokrpi sve invalid UTF8:
Kôd:
#!/bin/bash
echo "Content-Type: text/html; charset=UTF-8"
echo
wget -O- http://www.blogowski.eu/feed/ 2> /dev/null | iconv -c -f UTF-8 -t UTF-8
Oba proverena sa feedburnerom rade
