Home
last modified time | relevance | path

Searched refs:mdTable (Results 1 – 2 of 2) sorted by relevance

/plugin/sqlraw/
H A Dtest2.php50 $mdTable = array();
54 array_push($mdTable, array_fill(0, $colCount, NULL));
69 parseCell($cell,$mdTable,$rowPos,$colPos);
76 parseCell($cell,$mdTable,$rowPos,$colPos);
86 foreach ($mdTable as $key => $row) {
89 array_walk($mdTable[$key], "cleanCell");
92 return $mdTable;
106 function parseCell(&$cell,&$mdTable,&$rowPos,&$colPos) { argument
111 while (isset($mdTable[$rowPos][$colPos])) {
115 $mdTable[$rowPos][$colPos] = $cell->plaintext;
[all …]
H A Dsyntax.php462 $mdTable = table2csv($table,'tom.csv',false, $caption);
463 foreach ($mdTable as $key => $row) {
465 array_walk($mdTable[$key], "cleanCell");
467 fputcsv($fp, $mdTable[$key]);