Completed
Push — develop ( f754c8...268fc1 )
by Adrien
21:44
created
docs/Examples/Reader/exampleReader04.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@
 block discarded – undo
28 28
 $inputFileName = './sampleData/example1.xls';
29 29
 
30 30
 $inputFileType = PHPExcel_IOFactory::identify($inputFileName);
31
-echo 'File ',pathinfo($inputFileName, PATHINFO_BASENAME),' has been identified as an ',$inputFileType,' file<br />';
31
+echo 'File ', pathinfo($inputFileName, PATHINFO_BASENAME), ' has been identified as an ', $inputFileType, ' file<br />';
32 32
 
33
-echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using IOFactory with the identified reader type<br />';
33
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with the identified reader type<br />';
34 34
 $objReader = PHPExcel_IOFactory::createReader($inputFileType);
35 35
 $objPHPExcel = $objReader->load($inputFileName);
36 36
 
Please login to merge, or discard this patch.
docs/Examples/Reader/exampleReader01.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 include 'PHPExcel/IOFactory.php';
27 27
 
28 28
 $inputFileName = './sampleData/example_1.xls';
29
-echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using IOFactory to identify the format<br />';
29
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory to identify the format<br />';
30 30
 try {
31 31
     $objPHPExcel = PHPExcel_IOFactory::load($inputFileName);
32 32
 } catch (\PHPExcel\Reader\Exception $e) {
Please login to merge, or discard this patch.
docs/Examples/Reader/exampleReader03.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
docs/Examples/Reader/exampleReader10.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,9 +62,9 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
docs/Examples/Reader/exampleReader16.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 include 'PHPExcel/IOFactory.php';
27 27
 
28 28
 $inputFileName = './sampleData/example_1.xls';
29
-echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using IOFactory to identify the format<br />';
29
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory to identify the format<br />';
30 30
 try {
31 31
     $objPHPExcel = PHPExcel_IOFactory::load($inputFileName);
32 32
 } catch (\PHPExcel\Reader\Exception $e) {
Please login to merge, or discard this patch.
docs/Examples/Reader/exampleReader11.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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  **/
Please login to merge, or discard this patch.
docs/Examples/Reader/exampleReader19.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
docs/Examples/Reader/exampleReader12.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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  **/
Please login to merge, or discard this patch.
docs/Examples/Reader/exampleReader09.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,9 +62,9 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.