Heim  >  Artikel  >  Backend-Entwicklung  >  CVS文件的导入和导出php类代码

CVS文件的导入和导出php类代码

WBOY
WBOYOriginal
2016-07-25 08:43:231076Durchsuche

CVS文件的导入和导出php类代码,通过这个自定义的php类可以实现数据库的数据和CVS文件的转换

  1. /**
  2. * CSV 文件处理类
  3. */
  4. class Csv{
  5. public $csv_array; //csv数组数据
  6. public $csv_str; //csv文件数据
  7. public function __construct($param_arr, $column){
  8. $this->csv_array = $param_arr;
  9. $this->path = $path;
  10. $this->column = $column;
  11. }
  12. /**
  13. * 导出
  14. * */
  15. public function export(){
  16. if(empty($this->csv_array) || empty($this->column)){
  17. return false;
  18. }
  19. $param_arr = $this->csv_array;
  20. unset($this->csv_array);
  21. $export_str = implode(',',$param_arr['nav'])."n";
  22. unset($param_arr['nav']);
  23. //组装数据
  24. foreach($param_arr as $k=>$v){
  25. foreach($v as $k1=>$v1){
  26. $export_str .= implode(',',$v1)."n";
  27. }
  28. }
  29. //将$export_str导出
  30. header( "Cache-Control: public" );
  31. header( "Pragma: public" );
  32. header("Content-type:application/vnd.ms-excel");
  33. header("Content-Disposition:attachment;filename=txxx.csv");
  34. header('Content-Type:APPLICATION/OCTET-STREAM');
  35. ob_start();
  36. // $file_str= iconv("utf-8",'gbk',$export_str);
  37. ob_end_clean();
  38. echo $export_str;
  39. }
  40. /**
  41. * 导入
  42. * */
  43. public function import($path,$column = 3){
  44. $flag = flase;
  45. $code = 0;
  46. $msg = '未处理';
  47. $filesize = 1; //1MB
  48. $maxsize = $filesize * 1024 * 1024;
  49. $max_column = 1000;
  50. //检测文件是否存在
  51. if($flag === flase){
  52. if(!file_exists($path)){
  53. $msg = '文件不存在';
  54. $flag = true;
  55. }
  56. }
  57. //检测文件格式
  58. if($flag === flase){
  59. $ext = preg_replace("/.*.([^.]+)/","$1",$path);
  60. if($ext != 'csv'){
  61. $msg = '只能导入CSV格式文件';
  62. $flag = true;
  63. }
  64. }
  65. //检测文件大小
  66. if($flag === flase){
  67. if(filesize($path)>$maxsize){
  68. $msg = '导入的文件不得超过'.$maxsize.'B文件';
  69. $flag = true;
  70. }
  71. }
  72. //读取文件
  73. if($flag == flase){
  74. $row = 0;
  75. $handle = fopen($path,'r');
  76. $dataArray = array();
  77. while($data = fgetcsv($handle,$max_column,",")){
  78. $num = count($data);
  79. if($num $msg = '文件不符合规格真实有:'.$num.'列数据';
  80. $flag = true;
  81. break;
  82. }
  83. if($flag === flase){
  84. for($i=0;$i if($row == 0){
  85. break;
  86. }
  87. //组建数据
  88. $dataArray[$row][$i] = $data[$i];
  89. }
  90. }
  91. $row++;
  92. }
  93. }
  94. return $dataArray;
  95. }
  96. }
  97. $param_arr = array(
  98. 'nav'=>array('用户名','密码','邮箱'),
  99. array(0=>array('xiaohai1','123456','xiaohai1@zhongsou.com'),
  100. 1=>array('xiaohai2','213456','xiaohai2@zhongsou.com'),
  101. 2=>array('xiaohai3','123456','xiaohai3@zhongsou.com')
  102. ));
  103. $column = 3;
  104. $csv = new Csv($param_arr, $column);
  105. //$csv->export();
  106. $path = 'C:Documents and SettingsAdministratorLocal SettingsTemptxxx.csv';
  107. $import_arr = $csv->import($path,3);
  108. var_dump($import_arr);
  109. ?>
复制代码

CVS, php


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn