CELL1 [PHP]Excel에서 Cell에 있는 value추출 $x=1; echo "\t\n"; while($xsheets[0]['numRows']) { // reading row by row echo "\t\n"; $y=1; while($ysheets[0]['numCols']) { // reading column by column $cell = isset($data->sheets[0]['cells'][$x][$y]) ? $data->sheets[0]['cells'][$x][$y] : ''; if($x == 1) {echo "\t\t$cell\n";} // get each cells values $y++; } echo "\t\n"; $x++; } echo "\t\n"; 2018. 1. 10. 이전 1 다음