Tema: PHP y CSV
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/10/2012, 07:49
Avatar de bymorr
bymorr
 
Fecha de Ingreso: septiembre-2012
Mensajes: 118
Antigüedad: 11 años, 7 meses
Puntos: 9
Respuesta: PHP y CSV

Lo solucione, la dejo continuación por si alguien esta ocupando lo mismo.

Utilizo PHPExcel_Reader_CSV

La solucion es que la api tiene delimitadores.

Código PHP:
Ver original
  1. public function setDelimiter($pValue = '\\') { //cambie la , por \\
  2.         $this->_delimiter = $pValue;
  3.         return $this;
  4.     }



Gracias