Completed
Push — develop ( f754c8...268fc1 )
by Adrien
21:44
created
docs/Examples/Reader/exampleReader17.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,16 +32,16 @@
 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
 
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
 ?>
Please login to merge, or discard this patch.
docs/Examples/Calculations/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,10 +34,10 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
docs/Examples/Calculations/DateTime/TIME.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     ?>
Please login to merge, or discard this patch.
docs/Examples/Calculations/DateTime/DATEVALUE.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@  discard block
 block discarded – undo
30 30
 $worksheet = $objPHPExcel->getActiveSheet();
31 31
 
32 32
 // Add some data
33
-$testDates = ['26 March 2012',    '29 Feb 2012',    'April 1, 2012',    '25/12/2012',
34
-                    '2012-Oct-31',        '5th November',    'January 1st',        'April 2012',
35
-                    '17-03',            '03-2012',        '29 Feb 2011',        '03-05-07',
36
-                    '03-MAY-07',        '03-13-07',
33
+$testDates = ['26 March 2012', '29 Feb 2012', 'April 1, 2012', '25/12/2012',
34
+                    '2012-Oct-31', '5th November', 'January 1st', 'April 2012',
35
+                    '17-03', '03-2012', '29 Feb 2011', '03-05-07',
36
+                    '03-MAY-07', '03-13-07',
37 37
                   ];
38 38
 $testDateCount = count($testDates);
39 39
 
@@ -62,10 +62,10 @@  discard block
 block discarded – undo
62 62
 	<?php
63 63
     for ($row = 1; $row <= $testDateCount; ++$row) {
64 64
         echo '<tr>';
65
-        echo '<td>' , $worksheet->getCell('A' . $row)->getFormattedValue() , '</td>';
66
-        echo '<td>' , $worksheet->getCell('B' . $row)->getValue() , '</td>';
67
-        echo '<td>' , $worksheet->getCell('B' . $row)->getFormattedValue() , '</td>';
68
-        echo '<td>' , $worksheet->getCell('C' . $row)->getFormattedValue() , '</td>';
65
+        echo '<td>', $worksheet->getCell('A' . $row)->getFormattedValue(), '</td>';
66
+        echo '<td>', $worksheet->getCell('B' . $row)->getValue(), '</td>';
67
+        echo '<td>', $worksheet->getCell('B' . $row)->getFormattedValue(), '</td>';
68
+        echo '<td>', $worksheet->getCell('C' . $row)->getFormattedValue(), '</td>';
69 69
         echo '</tr>';
70 70
     }
71 71
     ?>
Please login to merge, or discard this patch.
docs/Examples/Calculations/DateTime/TIMEVALUE.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 $worksheet = $objPHPExcel->getActiveSheet();
31 31
 
32 32
 // Add some data
33
-$testDates = ['3:15',    '13:15',    '15:15:15',    '3:15 AM',    '3:15 PM',    '5PM',    '9:15AM',    '13:15AM',
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
 
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
 	<?php
59 59
     for ($row = 1; $row <= $testDateCount; ++$row) {
60 60
         echo '<tr>';
61
-        echo '<td>' , $worksheet->getCell('A' . $row)->getFormattedValue() , '</td>';
62
-        echo '<td>' , $worksheet->getCell('B' . $row)->getValue() , '</td>';
63
-        echo '<td>' , $worksheet->getCell('B' . $row)->getFormattedValue() , '</td>';
64
-        echo '<td>' , $worksheet->getCell('C' . $row)->getFormattedValue() , '</td>';
61
+        echo '<td>', $worksheet->getCell('A' . $row)->getFormattedValue(), '</td>';
62
+        echo '<td>', $worksheet->getCell('B' . $row)->getValue(), '</td>';
63
+        echo '<td>', $worksheet->getCell('B' . $row)->getFormattedValue(), '</td>';
64
+        echo '<td>', $worksheet->getCell('C' . $row)->getFormattedValue(), '</td>';
65 65
         echo '</tr>';
66 66
     }
67 67
     ?>
Please login to merge, or discard this patch.
docs/Examples/Calculations/DateTime/DATE.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@  discard block
 block discarded – undo
30 30
 $worksheet = $objPHPExcel->getActiveSheet();
31 31
 
32 32
 // Add some data
33
-$testDates = [[2012, 3, 26],    [2012, 2, 29],    [2012, 4, 1],    [2012, 12, 25],
34
-                    [2012, 10, 31],    [2012, 11, 5],    [2012, 1, 1],    [2012, 3, 17],
35
-                    [2011, 2, 29],    [7, 5, 3],        [2012, 13, 1],    [2012, 11, 45],
36
-                    [2012, 0, 0],    [2012, 1, 0],    [2012, 0, 1],
37
-                    [2012, -2, 2],    [2012, 2, -2],    [2012, -2, -2],
33
+$testDates = [[2012, 3, 26], [2012, 2, 29], [2012, 4, 1], [2012, 12, 25],
34
+                    [2012, 10, 31], [2012, 11, 5], [2012, 1, 1], [2012, 3, 17],
35
+                    [2011, 2, 29], [7, 5, 3], [2012, 13, 1], [2012, 11, 45],
36
+                    [2012, 0, 0], [2012, 1, 0], [2012, 0, 1],
37
+                    [2012, -2, 2], [2012, 2, -2], [2012, -2, -2],
38 38
                   ];
39 39
 $testDateCount = count($testDates);
40 40
 
@@ -67,12 +67,12 @@  discard block
 block discarded – undo
67 67
 	<?php
68 68
     for ($row = 1; $row <= $testDateCount; ++$row) {
69 69
         echo '<tr>';
70
-        echo '<td>' , $worksheet->getCell('A' . $row)->getFormattedValue() , '</td>';
71
-        echo '<td>' , $worksheet->getCell('B' . $row)->getFormattedValue() , '</td>';
72
-        echo '<td>' , $worksheet->getCell('C' . $row)->getFormattedValue() , '</td>';
73
-        echo '<td>' , $worksheet->getCell('D' . $row)->getValue() , '</td>';
74
-        echo '<td>' , $worksheet->getCell('D' . $row)->getFormattedValue() , '</td>';
75
-        echo '<td>' , $worksheet->getCell('E' . $row)->getFormattedValue() , '</td>';
70
+        echo '<td>', $worksheet->getCell('A' . $row)->getFormattedValue(), '</td>';
71
+        echo '<td>', $worksheet->getCell('B' . $row)->getFormattedValue(), '</td>';
72
+        echo '<td>', $worksheet->getCell('C' . $row)->getFormattedValue(), '</td>';
73
+        echo '<td>', $worksheet->getCell('D' . $row)->getValue(), '</td>';
74
+        echo '<td>', $worksheet->getCell('D' . $row)->getFormattedValue(), '</td>';
75
+        echo '<td>', $worksheet->getCell('E' . $row)->getFormattedValue(), '</td>';
76 76
         echo '</tr>';
77 77
     }
78 78
     ?>
Please login to merge, or discard this patch.
docs/Examples/Calculations/Database/DSTDEVP.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -30,17 +30,17 @@
 block discarded – undo
30 30
 $worksheet = $objPHPExcel->getActiveSheet();
31 31
 
32 32
 // Add some data
33
-$database = [['Tree',  'Height', 'Age', 'Yield', 'Profit'],
34
-                   ['Apple',  18,       20,    14,      105.00],
35
-                   ['Pear',   12,       12,    10,       96.00],
36
-                   ['Cherry', 13,       14,     9,      105.00],
37
-                   ['Apple',  14,       15,    10,       75.00],
38
-                   ['Pear',    9,        8,     8,       76.80],
39
-                   ['Apple',   8,        9,     6,       45.00],
33
+$database = [['Tree', 'Height', 'Age', 'Yield', 'Profit'],
34
+                   ['Apple', 18, 20, 14, 105.00],
35
+                   ['Pear', 12, 12, 10, 96.00],
36
+                   ['Cherry', 13, 14, 9, 105.00],
37
+                   ['Apple', 14, 15, 10, 75.00],
38
+                   ['Pear', 9, 8, 8, 76.80],
39
+                   ['Apple', 8, 9, 6, 45.00],
40 40
                  ];
41
-$criteria = [['Tree',      'Height', 'Age', 'Yield', 'Profit', 'Height'],
42
-                   ['="=Apple"', '>10',    null,  null,    null,     '<16'],
43
-                   ['="=Pear"',  null,     null,  null,    null,     null],
41
+$criteria = [['Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height'],
42
+                   ['="=Apple"', '>10', null, null, null, '<16'],
43
+                   ['="=Pear"', null, null, null, null, null],
44 44
                  ];
45 45
 
46 46
 $worksheet->fromArray($criteria, null, 'A1');
Please login to merge, or discard this patch.
docs/Examples/Calculations/Database/DGET.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -30,17 +30,17 @@
 block discarded – undo
30 30
 $worksheet = $objPHPExcel->getActiveSheet();
31 31
 
32 32
 // Add some data
33
-$database = [['Tree',  'Height', 'Age', 'Yield', 'Profit'],
34
-                   ['Apple',  18,       20,    14,      105.00],
35
-                   ['Pear',   12,       12,    10,       96.00],
36
-                   ['Cherry', 13,       14,     9,      105.00],
37
-                   ['Apple',  14,       15,    10,       75.00],
38
-                   ['Pear',    9,        8,     8,       76.80],
39
-                   ['Apple',   8,        9,     6,       45.00],
33
+$database = [['Tree', 'Height', 'Age', 'Yield', 'Profit'],
34
+                   ['Apple', 18, 20, 14, 105.00],
35
+                   ['Pear', 12, 12, 10, 96.00],
36
+                   ['Cherry', 13, 14, 9, 105.00],
37
+                   ['Apple', 14, 15, 10, 75.00],
38
+                   ['Pear', 9, 8, 8, 76.80],
39
+                   ['Apple', 8, 9, 6, 45.00],
40 40
                  ];
41
-$criteria = [['Tree',      'Height', 'Age', 'Yield', 'Profit', 'Height'],
42
-                   ['="=Apple"', '>10',    null,  null,    null,     '<16'],
43
-                   ['="=Pear"',  null,     null,  null,    null,     null],
41
+$criteria = [['Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height'],
42
+                   ['="=Apple"', '>10', null, null, null, '<16'],
43
+                   ['="=Pear"', null, null, null, null, null],
44 44
                  ];
45 45
 
46 46
 $worksheet->fromArray($criteria, null, 'A1');
Please login to merge, or discard this patch.
docs/Examples/Calculations/Database/DMIN.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -30,17 +30,17 @@
 block discarded – undo
30 30
 $worksheet = $objPHPExcel->getActiveSheet();
31 31
 
32 32
 // Add some data
33
-$database = [['Tree',  'Height', 'Age', 'Yield', 'Profit'],
34
-                   ['Apple',  18,       20,    14,      105.00],
35
-                   ['Pear',   12,       12,    10,       96.00],
36
-                   ['Cherry', 13,       14,     9,      105.00],
37
-                   ['Apple',  14,       15,    10,       75.00],
38
-                   ['Pear',    9,        8,     8,       76.80],
39
-                   ['Apple',   8,        9,     6,       45.00],
33
+$database = [['Tree', 'Height', 'Age', 'Yield', 'Profit'],
34
+                   ['Apple', 18, 20, 14, 105.00],
35
+                   ['Pear', 12, 12, 10, 96.00],
36
+                   ['Cherry', 13, 14, 9, 105.00],
37
+                   ['Apple', 14, 15, 10, 75.00],
38
+                   ['Pear', 9, 8, 8, 76.80],
39
+                   ['Apple', 8, 9, 6, 45.00],
40 40
                  ];
41
-$criteria = [['Tree',      'Height', 'Age', 'Yield', 'Profit', 'Height'],
42
-                   ['="=Apple"', '>10',    null,  null,    null,     '<16'],
43
-                   ['="=Pear"',  null,     null,  null,    null,     null],
41
+$criteria = [['Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height'],
42
+                   ['="=Apple"', '>10', null, null, null, '<16'],
43
+                   ['="=Pear"', null, null, null, null, null],
44 44
                  ];
45 45
 
46 46
 $worksheet->fromArray($criteria, null, 'A1');
Please login to merge, or discard this patch.