* @var float
* @access public
*/
- public $memberProcessCountPerRound = 20;
+ public $memberProcessCountPerRound = 40;
/**
* fileProcessCountPerRound
if ( ( $fp = fopen( $fileName, 'r' ) ) !== false ) {
// get first line to use as headers
$rowNumber = 0;
- while ( ( $data = fgetcsv( $fp, SELF::CSV_CHARS_PER_LINE, ',' ) ) !== false ) {
+ while ( ( $data = fgetcsv( $fp, SELF::CSV_CHARS_PER_LINE, ',', '"', '"' ) ) !== false ) {
if ( $rowNumber == 0 ) {
$fileHeaders = $data;
} else {