00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 class Varien_File_Csv
00033 {
00034 protected $_lineLength= 0;
00035 protected $_delimiter = ',';
00036 protected $_enclosure = '"';
00037
00038 public function __construct()
00039 {
00040
00041 }
00042
00043
00044
00045
00046
00047
00048
00049 public function setLineLength($length)
00050 {
00051 $this->_lineLength = $length;
00052 return $this;
00053 }
00054
00055
00056
00057
00058
00059
00060
00061 public function setDelimiter($delimiter)
00062 {
00063 $this->_delimiter = $delimiter;
00064 return $this;
00065 }
00066
00067
00068
00069
00070
00071
00072
00073 public function setEnclosure($enclosure)
00074 {
00075 $this->_enclosure = $enclosure;
00076 return $this;
00077 }
00078
00079
00080
00081
00082
00083
00084
00085 public function getData($file)
00086 {
00087 $data = array();
00088 if (!file_exists($file)) {
00089 throw new Exception('File "'.$file.'" do not exists');
00090 }
00091
00092 $fh = fopen($file, 'r');
00093 while ($rowData = fgetcsv($fh, $this->_lineLength, $this->_delimiter, $this->_enclosure)) {
00094 $data[] = $rowData;
00095 }
00096 fclose($fh);
00097 return $data;
00098 }
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108 public function getDataPairs($file, $keyIndex=0, $valueIndex=1)
00109 {
00110 $data = array();
00111 $csvData = $this->getData($file);
00112 foreach ($csvData as $rowData) {
00113 if (isset($rowData[$keyIndex])) {
00114 $data[$rowData[$keyIndex]] = isset($rowData[$valueIndex]) ? $rowData[$valueIndex] : null;
00115 }
00116 }
00117 return $data;
00118 }
00119
00120
00121
00122
00123
00124
00125
00126
00127 public function saveData($file, $data)
00128 {
00129 $fh = fopen($file, 'w');
00130 foreach ($data as $dataRow) {
00131 $this->fputcsv($fh, $dataRow, $this->_delimiter, $this->_enclosure);
00132 }
00133 fclose($fh);
00134 return $this;
00135 }
00136
00137 public function fputcsv(&$handle, $fields = array(), $delimiter = ',', $enclosure = '"') {
00138 $str = '';
00139 $escape_char = '\\';
00140 foreach ($fields as $value) {
00141 if (strpos($value, $delimiter) !== false ||
00142 strpos($value, $enclosure) !== false ||
00143 strpos($value, "\n") !== false ||
00144 strpos($value, "\r") !== false ||
00145 strpos($value, "\t") !== false ||
00146 strpos($value, ' ') !== false) {
00147 $str2 = $enclosure;
00148 $escaped = 0;
00149 $len = strlen($value);
00150 for ($i=0;$i<$len;$i++) {
00151 if ($value[$i] == $escape_char) {
00152 $escaped = 1;
00153 } else if (!$escaped && $value[$i] == $enclosure) {
00154 $str2 .= $enclosure;
00155 } else {
00156 $escaped = 0;
00157 }
00158 $str2 .= $value[$i];
00159 }
00160 $str2 .= $enclosure;
00161 $str .= $str2.$delimiter;
00162 } else {
00163 $str .= $enclosure.$value.$enclosure.$delimiter;
00164 }
00165 }
00166 $str = substr($str,0,-1);
00167 $str .= "\n";
00168 return fwrite($handle, $str);
00169 }
00170
00171 }