网站地图    收藏   

主页 > php专栏 > php应用 >

php 将文本文件转换csv输出 - php高级应用

来源:自学PHP网    时间:2014-11-27 22:16 作者: 阅读:

[导读] 这个类提供了转换成固定宽度的CSV文件,快速,简便的方法,它可将SplFileObject用于执行迭代,使它非常高效的一个迭代只知道当前成员,期权是提供给指定行字符和字段分隔符结束,This from CS...

php 将文本文件转换csv输出

这个类提供了转换成固定宽度的CSV文件,快速,简便的方法,它可将SplFileObject用于执行迭代,使它非常高效的一个迭代只知道当前成员,期权是提供给指定行字符和字段分隔符结束,This from CSV files.这个类是特别有用的,如果数据需要来自一个固定宽度的文件,并插入到数据库中,因为大多数的数据库支持从CSV文件中的数据输入.

这一类的方便的功能是可以跳过字段如果不是在输出需要,该领域的阵列提供,提供了一个键/值对,与主要持有的价值偏移,或启动领域的地位,和值包含的宽度,或字段的长度,For example.例如,12 =“10是一个领域,在12位和宽度或字段的长度为10个字符开始.

底的行字符默认成“ n”,而是可以设置为任何字符。

分隔符默认为一个逗号,但可以设置为任何字符,或字符。

.从文件的输出可以直接使用,写入一个文件,到数据库或任何其他目的插入.

PHP实例代码如下:

  1. <?php 
  2.  
  3. /**  
  4. * Class to convert fixed width files into CSV format  
  5. * Allows to set fields, separator, and end-of-line character  
  6.  
  7. * @author Kevin Waterson  
  8. * @url http://phpro.org  
  9. * @version $Id$  
  10.  
  11. */  
  12. class fixed2CSV extends SplFileObject  
  13. {  
  14. /**  
  15.  
  16. * Constructor, duh, calls the parent constructor  
  17.  
  18. * @access       public  
  19. * @param    string  The full path to the file to be converted  
  20.  
  21. */  
  22. public function __construct ( $filename )  
  23. {  
  24. parent :: __construct ( $filename );  
  25.  
  26. /*  
  27. * Settor, is called when trying to assign a value to non-existing property  
  28.  
  29. * @access    public  
  30. * @param    string    $name    The name of the property to set  
  31. * @param    mixed    $value    The value of the property  
  32. * @throw    Excption if property is not able to be set  
  33.  
  34. */  
  35. public function __set ( $name , $value )  
  36. {  
  37. switch$name )  
  38. {  
  39. case 'eol' :  
  40. case 'fields' :  
  41. case 'separator' :  
  42. $this -> $name = $value ;  
  43. break
  44.  
  45. default:  
  46. throw new Exception ( "Unable to set $name " );  
  47. }  
  48.  
  49. /**  
  50.  
  51. * Gettor This is called when trying to access a non-existing property  
  52.  
  53. * @access    public  
  54. * @param    string    $name    The name of the property  
  55. * @throw    Exception if proplerty cannot be set  
  56. * @return    string  
  57.  
  58. */  
  59. public function __get ( $name )  
  60. {  
  61. switch$name )  
  62. {  
  63. case 'eol' :  
  64. return " " ; 
  65.  
  66. case 'fields' :  
  67. return array(); 
  68.  
  69. case 'separator' :  
  70. return ',' ; 
  71.  
  72. default:  
  73. throw new Exception ( " $name cannot be set" );  
  74. }  
  75.  
  76. /**  
  77.  
  78. * Over ride the parent current method and convert the lines  
  79.  
  80. * @access    public  
  81. * @return    string    The line as a CSV representation of the fixed width line, false otherwise  
  82.  
  83. */  
  84. public function current ()  
  85. {  
  86. if( parent :: current () )  
  87. {  
  88. $csv = '' ;  
  89. $fields = new cachingIterator ( new ArrayIterator ( $this -> fields ) );  
  90. foreach$fields as $f )  
  91. {  
  92. $csv .= trim ( substr ( parent :: current (), $fields -> key (), $fields -> current ()  ) );  
  93. $csv .= $fields -> hasNext () ? $this -> separator : $this -> eol ;  
  94. }  
  95. return $csv ;  
  96. }  
  97. return false ;  
  98. }  
  99. // end of class 
  100.  
  101. ?> 
  102.  
  103. Example Usage示例用法 
  104.  
  105. <?php 
  106.  
  107. try  
  108. {  
  109. /*** the fixed width file to convert ***/  
  110. $file = new fixed2CSV ( 'my_file.txt' ); 
  111.  
  112. /*** The start position=>width of each field ***/  
  113. $file -> fields = array( 0 => 10 , 10 => 15 , 25 => 20 , 45 => 25 ); 
  114.  
  115. /*** output the converted lines ***/  
  116. foreach$file as $line )  
  117. {  
  118. echo $line ;  
  119.  
  120. /*** a new instance ***/  
  121. $new = new fixed2CSV ( 'my_file.txt' ); 
  122.  
  123. /*** get only first and third fields ***/  
  124. $new -> fields = array( 0 => 10 , 25 => 20 ); 
  125. //开源代码phpfensi.com 
  126. /*** output only the first and third fields ***/  
  127. foreach$new as $line )  
  128. {  
  129. echo $line ;  
  130.  
  131. }  
  132. catch( Exception $e )  
  133. {  
  134. echo $e -> getMessage ();  
  135.  
  136. ?> 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论