2008-07-31 12:48:12 by 番茄红了网络生活
今天,腾讯正式发布Linux版QQ,Tencent QQ for Linux 1.0 Preview
准备晚上下载个 SuSE 版的回去玩玩。
相信随着Linux版QQ的推出,Linux在国内的市场份额将会越来越大。
期待中…

2008-07-31 12:09:04 by 番茄红了技术相关
可恶的Donews的RSS编码居然是utf-8的,导致在使用Zend_Feed导入时会出错,添加了一段代码进行处理,保证在任何编码下都可以正常导入RSS
<?php
require_once("Zend/Loader.php");
Zend_Loader::registerAutoload();
$feedString = file_get_contents('http://home.donews.com/rss.xml');
preg_match('/encoding\=\"([\w\-]+)\"/i', $feedString, $matches);
$encoding = strtolower($matches[1]);
if ($encoding != 'utf-8') {
$feedString = mb_convert_encoding($feedString, 'utf-8', $encoding);
$feedString = preg_replace('/encoding\=\"([\w\-]+)\"/i', 'encoding="utf-8"', $feedString);
}
Zend_Feed::importString($feedString);