toexport.inc.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. /**
  3. * @version V4.60 24 Jan 2005 (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
  4. * Released under both BSD license and Lesser GPL library license.
  5. * Whenever there is any discrepancy between the two licenses,
  6. * the BSD license will take precedence.
  7. *
  8. * Code to export recordsets in several formats:
  9. *
  10. * AS VARIABLE
  11. * $s = rs2csv($rs); # comma-separated values
  12. * $s = rs2tab($rs); # tab delimited
  13. *
  14. * TO A FILE
  15. * $f = fopen($path,'w');
  16. * rs2csvfile($rs,$f);
  17. * fclose($f);
  18. *
  19. * TO STDOUT
  20. * rs2csvout($rs);
  21. */
  22. // returns a recordset as a csv string
  23. function rs2csv(&$rs,$addtitles=true)
  24. {
  25. return _adodb_export($rs,',',',',false,$addtitles);
  26. }
  27. // writes recordset to csv file
  28. function rs2csvfile(&$rs,$fp,$addtitles=true)
  29. {
  30. _adodb_export($rs,',',',',$fp,$addtitles);
  31. }
  32. // write recordset as csv string to stdout
  33. function rs2csvout(&$rs,$addtitles=true)
  34. {
  35. $fp = fopen('php://stdout','wb');
  36. _adodb_export($rs,',',',',true,$addtitles);
  37. fclose($fp);
  38. }
  39. function rs2tab(&$rs,$addtitles=true)
  40. {
  41. return _adodb_export($rs,"\t",',',false,$addtitles);
  42. }
  43. // to file pointer
  44. function rs2tabfile(&$rs,$fp,$addtitles=true)
  45. {
  46. _adodb_export($rs,"\t",',',$fp,$addtitles);
  47. }
  48. // to stdout
  49. function rs2tabout(&$rs,$addtitles=true)
  50. {
  51. $fp = fopen('php://stdout','wb');
  52. _adodb_export($rs,"\t",' ',true,$addtitles);
  53. if ($fp) fclose($fp);
  54. }
  55. function _adodb_export(&$rs,$sep,$sepreplace,$fp=false,$addtitles=true,$quote = '"',$escquote = '"',$replaceNewLine = ' ')
  56. {
  57. if (!$rs) return '';
  58. //----------
  59. // CONSTANTS
  60. $NEWLINE = "\r\n";
  61. $BUFLINES = 100;
  62. $escquotequote = $escquote.$quote;
  63. $s = '';
  64. if ($addtitles) {
  65. $fieldTypes = $rs->FieldTypesArray();
  66. reset($fieldTypes);
  67. while(list(,$o) = each($fieldTypes)) {
  68. $v = $o->name;
  69. if ($escquote) $v = str_replace($quote,$escquotequote,$v);
  70. $v = strip_tags(str_replace("\n", $replaceNewLine, str_replace("\r\n",$replaceNewLine,str_replace($sep,$sepreplace,$v))));
  71. $elements[] = $v;
  72. }
  73. $s .= implode($sep, $elements).$NEWLINE;
  74. }
  75. $hasNumIndex = isset($rs->fields[0]);
  76. $line = 0;
  77. $max = $rs->FieldCount();
  78. while (!$rs->EOF) {
  79. $elements = array();
  80. $i = 0;
  81. if ($hasNumIndex) {
  82. for ($j=0; $j < $max; $j++) {
  83. $v = $rs->fields[$j];
  84. if (!is_object($v)) $v = trim($v);
  85. else $v = 'Object';
  86. if ($escquote) $v = str_replace($quote,$escquotequote,$v);
  87. $v = strip_tags(str_replace("\n", $replaceNewLine, str_replace("\r\n",$replaceNewLine,str_replace($sep,$sepreplace,$v))));
  88. if (strpos($v,$sep) !== false || strpos($v,$quote) !== false) $elements[] = "$quote$v$quote";
  89. else $elements[] = $v;
  90. }
  91. } else { // ASSOCIATIVE ARRAY
  92. foreach($rs->fields as $v) {
  93. if ($escquote) $v = str_replace($quote,$escquotequote,trim($v));
  94. $v = strip_tags(str_replace("\n", $replaceNewLine, str_replace("\r\n",$replaceNewLine,str_replace($sep,$sepreplace,$v))));
  95. if (strpos($v,$sep) !== false || strpos($v,$quote) !== false) $elements[] = "$quote$v$quote";
  96. else $elements[] = $v;
  97. }
  98. }
  99. $s .= implode($sep, $elements).$NEWLINE;
  100. $rs->MoveNext();
  101. $line += 1;
  102. if ($fp && ($line % $BUFLINES) == 0) {
  103. if ($fp === true) echo $s;
  104. else fwrite($fp,$s);
  105. $s = '';
  106. }
  107. }
  108. if ($fp) {
  109. if ($fp === true) echo $s;
  110. else fwrite($fp,$s);
  111. $s = '';
  112. }
  113. return $s;
  114. }
  115. ?>