Всем привет.. Ребята, помогите пожалуйста написать граббер чтобы меняло кодировку того что я граблю из козябр..
вот сам граббер:
$url = "http://galaxy.mobstudio.ru/services/index.php?userID=9819514&password=4akp2k1b&usercur=9819514&a=lottery_help&type=21&";
$unique_start = "url=http://galaxy.mobstudio.ru/services/index.php?userID=9819514&password=4akp2k1b&usercur=9819514&a=lottery_buy_house_confirm&type=21&;>";
$unique_end = "url=http://galaxy.mobstudio.ru/services/index.php?userID=9819514&password=4akp2k1b&usercur=9819514&a=lottery&";
function weather($url, $unique_start, $unique_end) {
$code = file_get_contents($url);
preg_match('/'.preg_quote($unique_start,
'/').'(.*)'.preg_quote($unique_end, '/').'/Us', $code, $match);
return $match[1];
}
echo weather($url, $unique_start, $unique_end);
пытался менять кодировку так:
echo iconv(weather($url, $unique_start, $unique_end),'cp1251','utf-8');
но пишет ошибку: Warning: iconv() [function.iconv]: Charset parameter exceeds the maximum allowed length of 64 characters in Z:\home\localhost\www\lottery\index.php on line 43
Заранее спасибо)