本文实例讲述了php简单读取.vcf格式文件的方法。分享给大家供大家参考,具体如下:
/**
* 读取.vcf格式文件
* @param $filename
*/
function readcvf($filename){
$file = fopen($filename,"r");
while(! feof($file))
{
$line=fgets($file);
$encoding = mb_detect_encoding($line, array('gb2312','gbk','utf-16','ucs-2','utf-8','big5','ascii'));
$content = iconv($encoding, "utf-8", $line);
$arr = explode(":",$content) ;
if($arr[0]=="note;encoding=quoted-printable"){
$temp= quoted_printable_decode($arr[1]);
$encoding = mb_detect_encoding($temp, array('gb2312','gbk','utf-16','ucs-2','utf-8','big5','ascii'));
$arr[1] = iconv($encoding, "utf-8", $temp);
}
if(count($arr)==2){
$userinfo[$arr[0]] = $arr[1] ;
}
}
fclose($file);
return $userinfo;
}
经常遇到乱码问题:解决方法两步:
$encoding = mb_detect_encoding($line, array('gb2312','gbk','utf-16','ucs-2','utf-8','big5','ascii'));
$content = iconv($encoding, "utf-8", $line);
更多关于php相关内容感兴趣的读者可查看本站专题:《php文件操作总结》、《php数组(array)操作技巧大全》、《php基本语法入门教程》、《php面向对象程序设计入门教程》、《php网络编程技巧总结》及《php字符串(string)用法总结》
希望本文所述对大家php程序设计有所帮助。
评论列表:
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 2天前回复该评论
发布于 2天前回复该评论
发布于 2天前回复该评论
发布于 2天前回复该评论