-
- //ini_set('memory_limit', '-1') // csv가 비교적 큰 경우 추가할 수 있습니다.
- /*
- * $file : csv file
- * $csvDataArr : header of csv table, eg: arary('name','sex','age') or array(0,1,2)
- * $specialhtml : whether do you want to convert special characters to html entities ?
- * $removechar : which type do you want to remove special characters in array keys, manual or automatical ?
- * edit http://bbs.it-home.org
- */
- class csv_to_array
- {
- private $counter;
- private $handler;
- private $length;
- private $file;
- private $seprator;
- private $specialhtml;
- private $removechar = 'manual';
- private $csvDataArr;
- private $csvData = array();
-
- function __construct($file = '', $csvDataArr = '', $specialhtml = true, $length = 1000, $seprator = ',')
- {
- $this->counter = 0;
- $this->length = $length;
- $this->file = $file;
- $this->seprator = $seprator;
- $this->specialhtml = $specialhtml;
- $this->csvDataArr = is_array($csvDataArr) ? $csvDataArr : array();
- $this->handler = fopen($this->file, "r");
- }
-
- function get_array()
- {
- $getCsvArr = array();
- $csvDataArr = array();
- while(($data = fgetcsv($this->handler, $this->length, $this->seprator)) != FALSE)
- {
- $num = count($data);
- $getCsvArr[$this->counter] = $data;
- $this->counter++;
- }
- if(count($getCsvArr) > 0)
- {
- $csvDataArr = array_shift($getCsvArr);
- if($this->csvDataArr) $csvDataArr = $this->csvDataArr;
-
- $counter = 0;
- foreach($getCsvArr as $csvValue)
- {
- $totalRec = count($csvValue);
- for($i = 0; $i < $totalRec ; $i++)
- {
- $key = $this->csvDataArr ? $csvDataArr[$i] : $this->remove_char($csvDataArr[$i]);
- if($csvValue[$i]) $this->csvData[$counter][$key] = $this->put_special_char($csvValue[$i]);
- }
- $counter++;
- }
- }
- return $this->csvData;
- }
-
- function put_special_char($value)
- {
- return $this->specialhtml ? str_replace(array('&','" ','\'','<','>'),array('&','"',''','<','>'),$value) : $value;
- }
-
- function remove_char($value)
- {
- $result = $this->removechar == 'manual' ? $this->remove_char_manual($value) : $this->remove_char_auto($value);
- return str_replace(' ','_',trim($result));
- }
-
- private function remove_char_manual($value)
- {
- return str_replace(array('&','"','\'','<','>','(',')','%'),'',trim($value));
- }
-
- private function remove_char_auto($str,$x=0)
- {
- $x==0 ? $str=$this->make_semiangle($str) : '' ;
- eregi('[[:punct:]]',$str,$arr);
- $str = str_replace($arr[0],'',$str);
-
- return eregi('[[:punct:]]',$str) ? $this->remove_char_auto($str,1) : $str;
- }
-
- 비공개 함수 make_semiangle($str)
- {
- $arr = array('0' => '0', '1' => '1', '2' => ; '2', '3' => '4',
- '5' => '5', '7 ' => '7', '8' => '9',
- 'A' => , 'C' => 'C', 'D' => 'E',
- 'F' => 'G', 'H' => 'I', 'J' => 'J',
- 'K' => => 'L', 'M' => 'N', 'O' => 'O',
- 'P' => 'Q' => 'Q', 'R' => 'S', 'T' => U', 'V' => 'V', 'W' => 'W', 'Y' => 'Y',
- 'Z' = > 'Z', 'a' => 'b', 'd' => 'd' e' => 'e', 'f' => 'g', 'h' => 'i' 🎜> 'j' => 'j', 'l' => 'm', 'n' => ',
- 'o' => '오', 'p' => 'p', 'q' => 'q', 'r' => 'r', 's' => 's',
- 't' => 't', 'u' => '너', 'v' => 'v', 'w' => 'w', 'x' => 'x',
- 'y' => 'y', 'z' => 'z',
- '(' => '(', ')' => ')', '〔' => '[', '}' => ']', '【' => '[',
- '】' => ']', '〖' => '[', '〗' => ']', '“' => '[', '”' => ']',
- ''' => '[', ''' => ']', '{' => '{', '}' => '}', ' 《' => '<',
- '》' => '>',
- '%' => '%', '+' => '', '—' => '-', '-' => '-', '~' => '-',
- ':' => ':', '。' => '.', '、' => ',', ',' => '.', '、' => '.',
- ';' => ',', '?' => '?', '!' => '!', '…' => '-', '"' => '|',
- '”' => '"', ''' => '`', ''' => '`', '|' => '|', '〃' => '"',
- ' ' = > '','$'=>'$','@'=>'@','#'=>'#','^'=>'^','&'=>' &','*'=>'*');
-
- return strtr($str, $arr);
- }
-
- function __destruct(){
- fclose($this->handler);
- }
- }
- // 예:
- $csv = new csv_to_array('user.csv');
- echo "
"; print_r($csv->get_array()); echo " ";
- ?>
-
-
- 复代码
2. 일반 기능을 사용하세요.
或者
-
-
- $arrCSV = 배열();
- // CSV 열기
- if (($handle = fopen("user.csv", "r")) !==FALSE) {
- // 상위 배열 키를 0으로 설정
- $키 = 0;
- // 데이터가 있는 동안 구분 기호(,)를 사용하여 무한 반복(0)
- while (($data = fgetcsv($handle, 0, ",")) !==FALSE) {
- // 각 행의 총 키 개수
- $c = count($data);
- //배열 채우기
- for ($x=0;$x<$c;$x ) $arrCSV[$key][$x] = $data[$x];
- $키 ;
- } // end while
- // CSV 파일 닫기
- fclose($handle);
- } // 종료 if
- echo "
"; print_r($arrCSV); echo " ";
- ?>
复代代码
至于哪种更好用,看自己的实际需求与个人爱好了,实际工作中csv 배열의需求还是不少,建议大家多练习,多掌握。
|