php写入数据到CSV文件的方法_PHP教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:php从数组中随机选择若干不重复元素的方法
本文实例讲述了php从数组中随机选择若干不重复元素的方法。分享给大家供大家参考。具体实现方法如下: 代码如下:?php /* * $array = the array to be filtered * $total = the maximum number of items to return * $unique = whether or not to remove duplicates bef

 本文实例讲述了php写入数据到CSV文件的方法。分享给大家供大家参考。具体实现方法如下:

<?php $row = 0; ini_set('max_execution_time', 300); $cate;$item;$value;$us; $fp = fopen("torah1.csv", "w"); if (($handle = fopen("t.csv", "r")) !== FALSE) { while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { $num = count($data); $row++; for ($c=0; $c < $num; $c++) { if($c==0){ $us = $data[$c]; } if($c==1){ $item = explode(" ",$data[$c]); echo "<prE>"; print_r($item); } elseif($c==2){ $value=$data[$c]; } elseif($c==3){ $cate1 = $data[$c]; } else{ } } // end of for loop if($row > 1838) { exit; } fputcsv($fp, array($us,$item[0],$item[1],$item[2],$item[3])); }//End of While }// End of IF fclose($handle); fclose($fp); ?>

希望本文所述对大家的php程序设计有所帮助。

分享:php检测apache mod_rewrite模块是否安装的方法
本文实例讲述了php检测apachemod_rewrite模块是否安装的方法。分享给大家供大家参考。具体实现方法如下: /** * @title Check if Apache's mod_rewrite is installed. * * @author Pierre-Henry Soria ph7software@gmail.com * @copyright (c) 2013, Pierre-Henry Sori

来源:模板无忧//所属分类:PHP教程/更新时间:2015-03-18
相关PHP教程