63 $this->separator = $a_sep;
75 $this->delimiter = $a_del;
87 $this->length = $a_length;
97 return( @fclose($this->ptr_file) );
111 while (($line = fgetcsv($this->ptr_file, $this->length, $this->separator)) !== FALSE)
113 for ($col = 0; $col < count($line); $col++)
115 $this->data[
$row][$col] = $this->
unquote($line[$col]);
132 return str_replace($this->delimiter.$this->delimiter, $this->delimiter,$a_str);