@@ -62,7 +62,7 @@ |
||
62 | 62 | /* Tell the Reader that we want to use the Read Filter that we've Instantiated **/ |
63 | 63 | /* and that we want to store it in contiguous rows/columns **/ |
64 | 64 | $objReader->setReadFilter($chunkFilter) |
65 | - ->setContiguous(true); |
|
65 | + ->setContiguous(true); |
|
66 | 66 | |
67 | 67 | /* Instantiate a new PHPExcel object manually **/ |
68 | 68 | $objPHPExcel = new PHPExcel(); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | } |
49 | 49 | } |
50 | 50 | |
51 | -echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; |
|
51 | +echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with a defined reader type of ', $inputFileType, '<br />'; |
|
52 | 52 | /* Create a new Reader of the type defined in $inputFileType **/ |
53 | 53 | $objReader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($inputFileType); |
54 | 54 | |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | /* Loop to read our worksheet in "chunk size" blocks **/ |
73 | 73 | /** $startRow is set to 2 initially because we always read the headings in row #1 **/ |
74 | 74 | for ($startRow = 2; $startRow <= 240; $startRow += $chunkSize) { |
75 | - echo 'Loading WorkSheet #',($sheet + 1),' using configurable filter for headings row 1 and for rows ',$startRow,' to ',($startRow + $chunkSize - 1),'<br />'; |
|
75 | + echo 'Loading WorkSheet #', ($sheet + 1), ' using configurable filter for headings row 1 and for rows ', $startRow, ' to ', ($startRow + $chunkSize - 1), '<br />'; |
|
76 | 76 | /* Tell the Read Filter, the limits on which rows we want to read this iteration **/ |
77 | 77 | $chunkFilter->setRows($startRow, $chunkSize); |
78 | 78 | |
@@ -87,10 +87,10 @@ discard block |
||
87 | 87 | |
88 | 88 | echo '<hr />'; |
89 | 89 | |
90 | -echo $spreadsheet->getSheetCount(),' worksheet',(($spreadsheet->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />'; |
|
90 | +echo $spreadsheet->getSheetCount(), ' worksheet', (($spreadsheet->getSheetCount() == 1) ? '' : 's'), ' loaded<br /><br />'; |
|
91 | 91 | $loadedSheetNames = $spreadsheet->getSheetNames(); |
92 | 92 | foreach ($loadedSheetNames as $sheetIndex => $loadedSheetName) { |
93 | - echo '<b>Worksheet #',$sheetIndex,' -> ',$loadedSheetName,'</b><br />'; |
|
93 | + echo '<b>Worksheet #', $sheetIndex, ' -> ', $loadedSheetName, '</b><br />'; |
|
94 | 94 | $spreadsheet->setActiveSheetIndexByName($loadedSheetName); |
95 | 95 | $sheetData = $spreadsheet->getActiveSheet()->toArray(null, false, false, true); |
96 | 96 | var_dump($sheetData); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
60 | -echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; |
|
60 | +echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with a defined reader type of ', $inputFileType, '<br />'; |
|
61 | 61 | /* Create a new Reader of the type defined in $inputFileType **/ |
62 | 62 | $objReader = PHPExcel_IOFactory::createReader($inputFileType); |
63 | 63 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | |
74 | 74 | /* Loop to read our worksheet in "chunk size" blocks **/ |
75 | 75 | for ($startRow = 2; $startRow <= 240; $startRow += $chunkSize) { |
76 | - echo 'Loading WorkSheet using configurable filter for headings row 1 and for rows ',$startRow,' to ',($startRow + $chunkSize - 1),'<br />'; |
|
76 | + echo 'Loading WorkSheet using configurable filter for headings row 1 and for rows ', $startRow, ' to ', ($startRow + $chunkSize - 1), '<br />'; |
|
77 | 77 | /* Tell the Read Filter, the limits on which rows we want to read this iteration **/ |
78 | 78 | $chunkFilter->setRows($startRow, $chunkSize); |
79 | 79 | /* Load only the rows that match our filter from $inputFileName to a PHPExcel Object **/ |
@@ -32,7 +32,7 @@ |
||
32 | 32 | // $inputFileType = 'Gnumeric'; |
33 | 33 | $inputFileName = './sampleData/example1.xls'; |
34 | 34 | |
35 | -echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' information using IOFactory with a defined reader type of ',$inputFileType,'<br />'; |
|
35 | +echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' information using IOFactory with a defined reader type of ', $inputFileType, '<br />'; |
|
36 | 36 | |
37 | 37 | $objReader = PHPExcel_IOFactory::createReader($inputFileType); |
38 | 38 | $worksheetData = $objReader->listWorksheetInfo($inputFileName); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
60 | -echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; |
|
60 | +echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with a defined reader type of ', $inputFileType, '<br />'; |
|
61 | 61 | /* Create a new Reader of the type defined in $inputFileType **/ |
62 | 62 | $objReader = PHPExcel_IOFactory::createReader($inputFileType); |
63 | 63 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | |
74 | 74 | /* Loop to read our worksheet in "chunk size" blocks **/ |
75 | 75 | for ($startRow = 2; $startRow <= 240; $startRow += $chunkSize) { |
76 | - echo 'Loading WorkSheet using configurable filter for headings row 1 and for rows ',$startRow,' to ',($startRow + $chunkSize - 1),'<br />'; |
|
76 | + echo 'Loading WorkSheet using configurable filter for headings row 1 and for rows ', $startRow, ' to ', ($startRow + $chunkSize - 1), '<br />'; |
|
77 | 77 | /* Tell the Read Filter, the limits on which rows we want to read this iteration **/ |
78 | 78 | $chunkFilter->setRows($startRow, $chunkSize); |
79 | 79 | /* Load only the rows that match our filter from $inputFileName to a PHPExcel Object **/ |
@@ -62,9 +62,9 @@ |
||
62 | 62 | |
63 | 63 | $filterSubset = new MyReadFilter(9, 15, range('G', 'K')); |
64 | 64 | |
65 | -echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; |
|
65 | +echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with a defined reader type of ', $inputFileType, '<br />'; |
|
66 | 66 | $objReader = PHPExcel_IOFactory::createReader($inputFileType); |
67 | -echo 'Loading Sheet "',$sheetname,'" only<br />'; |
|
67 | +echo 'Loading Sheet "', $sheetname, '" only<br />'; |
|
68 | 68 | $objReader->setLoadSheetsOnly($sheetname); |
69 | 69 | echo 'Loading Sheet using configurable filter<br />'; |
70 | 70 | $objReader->setReadFilter($filterSubset); |
@@ -32,7 +32,7 @@ |
||
32 | 32 | // $inputFileType = 'Gnumeric'; |
33 | 33 | $inputFileName = './sampleData/example1.xls'; |
34 | 34 | |
35 | -echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; |
|
35 | +echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with a defined reader type of ', $inputFileType, '<br />'; |
|
36 | 36 | $objReader = PHPExcel_IOFactory::createReader($inputFileType); |
37 | 37 | echo 'Turning Formatting off for Load<br />'; |
38 | 38 | $objReader->setReadDataOnly(true); |
@@ -32,16 +32,16 @@ |
||
32 | 32 | // $inputFileType = 'Gnumeric'; |
33 | 33 | $inputFileName = './sampleData/example1.xls'; |
34 | 34 | |
35 | -echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'; |
|
35 | +echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with a defined reader type of ', $inputFileType, '<br />'; |
|
36 | 36 | $objReader = PHPExcel_IOFactory::createReader($inputFileType); |
37 | 37 | |
38 | 38 | /* Read the list of Worksheet Names from the Workbook file **/ |
39 | 39 | echo 'Read the list of Worksheets in the WorkBook<br />'; |
40 | 40 | $worksheetNames = $objReader->listWorksheetNames($inputFileName); |
41 | 41 | |
42 | -echo 'There are ',count($worksheetNames),' worksheet',((count($worksheetNames) == 1) ? '' : 's'),' in the workbook<br /><br />'; |
|
42 | +echo 'There are ', count($worksheetNames), ' worksheet', ((count($worksheetNames) == 1) ? '' : 's'), ' in the workbook<br /><br />'; |
|
43 | 43 | foreach ($worksheetNames as $worksheetName) { |
44 | - echo $worksheetName,'<br />'; |
|
44 | + echo $worksheetName, '<br />'; |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | ?> |
@@ -34,10 +34,10 @@ |
||
34 | 34 | $h1Text = $out[1]; |
35 | 35 | $h2Text = (preg_match($h2Pattern, $fileData, $out)) ? $out[1] : ''; |
36 | 36 | |
37 | - echo '<a href="',$exampleFile,'">',$h1Text,'</a><br />'; |
|
37 | + echo '<a href="', $exampleFile, '">', $h1Text, '</a><br />'; |
|
38 | 38 | if (($h2Text > '') && |
39 | 39 | (pathinfo($exampleType, PATHINFO_BASENAME) != 'Calculations')) { |
40 | - echo $h2Text,'<br />'; |
|
40 | + echo $h2Text, '<br />'; |
|
41 | 41 | } |
42 | 42 | } |
43 | 43 | } |
@@ -30,9 +30,9 @@ discard block |
||
30 | 30 | $worksheet = $objPHPExcel->getActiveSheet(); |
31 | 31 | |
32 | 32 | // Add some data |
33 | -$testDates = [[3, 15], [13, 15], [15, 15, 15], [3, 15, 30], |
|
34 | - [15, 15, 15], [5], [9, 15, 0], [9, 15, -1], |
|
35 | - [13, -14, -15], [0, 0, -1], |
|
33 | +$testDates = [[3, 15], [13, 15], [15, 15, 15], [3, 15, 30], |
|
34 | + [15, 15, 15], [5], [9, 15, 0], [9, 15, -1], |
|
35 | + [13, -14, -15], [0, 0, -1], |
|
36 | 36 | ]; |
37 | 37 | $testDateCount = count($testDates); |
38 | 38 | |
@@ -65,12 +65,12 @@ discard block |
||
65 | 65 | <?php |
66 | 66 | for ($row = 1; $row <= $testDateCount; ++$row) { |
67 | 67 | echo '<tr>'; |
68 | - echo '<td>' , $worksheet->getCell('A' . $row)->getFormattedValue() , '</td>'; |
|
69 | - echo '<td>' , $worksheet->getCell('B' . $row)->getFormattedValue() , '</td>'; |
|
70 | - echo '<td>' , $worksheet->getCell('C' . $row)->getFormattedValue() , '</td>'; |
|
71 | - echo '<td>' , $worksheet->getCell('D' . $row)->getValue() , '</td>'; |
|
72 | - echo '<td>' , $worksheet->getCell('D' . $row)->getFormattedValue() , '</td>'; |
|
73 | - echo '<td>' , $worksheet->getCell('E' . $row)->getFormattedValue() , '</td>'; |
|
68 | + echo '<td>', $worksheet->getCell('A' . $row)->getFormattedValue(), '</td>'; |
|
69 | + echo '<td>', $worksheet->getCell('B' . $row)->getFormattedValue(), '</td>'; |
|
70 | + echo '<td>', $worksheet->getCell('C' . $row)->getFormattedValue(), '</td>'; |
|
71 | + echo '<td>', $worksheet->getCell('D' . $row)->getValue(), '</td>'; |
|
72 | + echo '<td>', $worksheet->getCell('D' . $row)->getFormattedValue(), '</td>'; |
|
73 | + echo '<td>', $worksheet->getCell('E' . $row)->getFormattedValue(), '</td>'; |
|
74 | 74 | echo '</tr>'; |
75 | 75 | } |
76 | 76 | ?> |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | // Add some data |
33 | 33 | $testDates = ['3:15', '13:15', '15:15:15', '3:15 AM', '3:15 PM', '5PM', '9:15AM', '13:15AM', |
34 | - ]; |
|
34 | + ]; |
|
35 | 35 | $testDateCount = count($testDates); |
36 | 36 | |
37 | 37 | for ($row = 1; $row <= $testDateCount; ++$row) { |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | } |
42 | 42 | |
43 | 43 | $worksheet->getStyle('C1:C' . $testDateCount) |
44 | - ->getNumberFormat() |
|
45 | - ->setFormatCode('hh:mm:ss'); |
|
44 | + ->getNumberFormat() |
|
45 | + ->setFormatCode('hh:mm:ss'); |
|
46 | 46 | |
47 | 47 | echo '<hr />'; |
48 | 48 |