码迷,mamicode.com
首页 > Web开发 > 详细

php 读写 csv文件

时间:2017-12-14 03:51:24      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:function   class   pos   handle   while   for   gpo   fgetc   nbsp   

 读取csv

function input_csv($handle) { 
    $out = array (); 
    $n = 0; 
    while ($data = fgetcsv($handle, 10000)) { 
        $num = count($data); 
        for ($i = 0; $i < $num; $i++) { 
            $out[$n][$i] = $data[$i]; 
        } 
        $n++; 
    } 
    return $out; 
} 

php 读写 csv文件

标签:function   class   pos   handle   while   for   gpo   fgetc   nbsp   

原文地址:http://www.cnblogs.com/mitang/p/8035286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!