摘要: <?php //取数据 $f_d = file_get_contents('tpl_import_info.csv'); $f_d = iconv('gbk', 'utf-8', $f_d); file_put_contents('tpl_import_info.csv',$f_d); setlocale(LC_ALL,'zh_CN.UTF-8'); //解决fgetcsv处理中文失败的问题 $hl = fopen('tpl_import_info.csv','r'); ... 阅读全文
posted @ 2013-09-12 18:36 午时的海 阅读(360) 评论(0) 推荐(0) 编辑