Lines Matching refs:cell
161 $cell = null;
173 $cell = '';
178 $cell = '';
183 if ($cell !== null) {
184 $cell .= $data[0];
190 $row[] = trim($cell);
192 $cell = null; // Reset
221 foreach ($row as $j => $cell) {
257 if (is_numeric($cell)) {
260 …$columnData[$j]['precision'] = max($columnData[$j]['precision'], $this->countDecimalPlaces($cell));
261 … $rowData[$i]['precision'] = max($rowData[$i]['precision'], $this->countDecimalPlaces($cell));
262 if ((int)$cell == $cell) {
263 $numericCell = intval($cell);
264 } elseif ((float)$cell == $cell) {
265 $numericCell = floatval($cell);
277 $output .= $this->insertCellData($cell, $columnData, $rowData, $j, $i);
303 …private function insertCellData(mixed $cell, array &$columnData, array &$rowData, int $colNum, int… argument
310 switch (trim($cell)) {
335 return $cell;