Searched refs:mdTable (Results 1 – 2 of 2) sorted by relevance
/plugin/sqlraw/ |
H A D | test2.php | 50 $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 D | syntax.php | 462 $mdTable = table2csv($table,'tom.csv',false, $caption); 463 foreach ($mdTable as $key => $row) { 465 array_walk($mdTable[$key], "cleanCell"); 467 fputcsv($fp, $mdTable[$key]);
|