Completed
Branch develop (b42baf)
by Adrien
11:23
created
Documentation/Examples/Reader/exampleReader10.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -37,26 +37,26 @@
 block discarded – undo
37 37
 
38 38
 class MyReadFilter implements PHPExcel_Reader_IReadFilter
39 39
 {
40
-	private $_startRow = 0;
41
-
42
-	private $_endRow = 0;
43
-
44
-	private $_columns = array();
45
-
46
-	public function __construct($startRow, $endRow, $columns) {
47
-		$this->_startRow	= $startRow;
48
-		$this->_endRow		= $endRow;
49
-		$this->_columns		= $columns;
50
-	}
51
-
52
-	public function readCell($column, $row, $worksheetName = '') {
53
-		if ($row >= $this->_startRow && $row <= $this->_endRow) {
54
-			if (in_array($column,$this->_columns)) {
55
-				return true;
56
-			}
57
-		}
58
-		return false;
59
-	}
40
+    private $_startRow = 0;
41
+
42
+    private $_endRow = 0;
43
+
44
+    private $_columns = array();
45
+
46
+    public function __construct($startRow, $endRow, $columns) {
47
+        $this->_startRow	= $startRow;
48
+        $this->_endRow		= $endRow;
49
+        $this->_columns		= $columns;
50
+    }
51
+
52
+    public function readCell($column, $row, $worksheetName = '') {
53
+        if ($row >= $this->_startRow && $row <= $this->_endRow) {
54
+            if (in_array($column,$this->_columns)) {
55
+                return true;
56
+            }
57
+        }
58
+        return false;
59
+    }
60 60
 }
61 61
 
62 62
 $filterSubset = new MyReadFilter(9,15,range('G','K'));
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@  discard block
 block discarded – undo
45 45
 
46 46
 	public function __construct($startRow, $endRow, $columns) {
47 47
 		$this->_startRow	= $startRow;
48
-		$this->_endRow		= $endRow;
48
+		$this->_endRow = $endRow;
49 49
 		$this->_columns		= $columns;
50 50
 	}
51 51
 
52 52
 	public function readCell($column, $row, $worksheetName = '') {
53 53
 		if ($row >= $this->_startRow && $row <= $this->_endRow) {
54
-			if (in_array($column,$this->_columns)) {
54
+			if (in_array($column, $this->_columns)) {
55 55
 				return true;
56 56
 			}
57 57
 		}
@@ -59,12 +59,12 @@  discard block
 block discarded – undo
59 59
 	}
60 60
 }
61 61
 
62
-$filterSubset = new MyReadFilter(9,15,range('G','K'));
62
+$filterSubset = new MyReadFilter(9, 15, range('G', 'K'));
63 63
 
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);
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
 echo '<hr />';
75 75
 
76
-$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true);
76
+$sheetData = $objPHPExcel->getActiveSheet()->toArray(null, true, true, true);
77 77
 var_dump($sheetData);
78 78
 
79 79
 
Please login to merge, or discard this patch.
Documentation/Examples/Reader/exampleReader17.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
 echo 'There are ',count($worksheetNames),' worksheet',((count($worksheetNames) == 1) ? '' : 's'),' in the workbook<br /><br />';
45 45
 foreach($worksheetNames as $worksheetName) {
46
-	echo $worksheetName,'<br />';
46
+    echo $worksheetName,'<br />';
47 47
 }
48 48
 
49 49
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 //	$inputFileType = 'Gnumeric';
34 34
 $inputFileName = './sampleData/example1.xls';
35 35
 
36
-echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />';
36
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with a defined reader type of ', $inputFileType, '<br />';
37 37
 $objReader = PHPExcel_IOFactory::createReader($inputFileType);
38 38
 
39 39
 
@@ -41,9 +41,9 @@  discard block
 block discarded – undo
41 41
 echo 'Read the list of Worksheets in the WorkBook<br />';
42 42
 $worksheetNames = $objReader->listWorksheetNames($inputFileName);
43 43
 
44
-echo 'There are ',count($worksheetNames),' worksheet',((count($worksheetNames) == 1) ? '' : 's'),' in the workbook<br /><br />';
45
-foreach($worksheetNames as $worksheetName) {
46
-	echo $worksheetName,'<br />';
44
+echo 'There are ', count($worksheetNames), ' worksheet', ((count($worksheetNames) == 1) ? '' : 's'), ' in the workbook<br /><br />';
45
+foreach ($worksheetNames as $worksheetName) {
46
+	echo $worksheetName, '<br />';
47 47
 }
48 48
 
49 49
 
Please login to merge, or discard this patch.
Documentation/Examples/Reader/exampleReader02.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
 $inputFileName = './sampleData/example1.xls';
30 30
 
31
-echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using PHPExcel_Reader_Excel5<br />';
31
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using PHPExcel_Reader_Excel5<br />';
32 32
 $objReader = new PHPExcel_Reader_Excel5();
33 33
 //	$objReader = new PHPExcel_Reader_Excel2007();
34 34
 //	$objReader = new PHPExcel_Reader_Excel2003XML();
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
 echo '<hr />';
43 43
 
44
-$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true);
44
+$sheetData = $objPHPExcel->getActiveSheet()->toArray(null, true, true, true);
45 45
 var_dump($sheetData);
46 46
 
47 47
 
Please login to merge, or discard this patch.
Documentation/Examples/Reader/exampleReader08.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 echo $objPHPExcel->getSheetCount(),' worksheet',(($objPHPExcel->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />';
47 47
 $loadedSheetNames = $objPHPExcel->getSheetNames();
48 48
 foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) {
49
-	echo $sheetIndex,' -> ',$loadedSheetName,'<br />';
49
+    echo $sheetIndex,' -> ',$loadedSheetName,'<br />';
50 50
 }
51 51
 
52 52
 
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -32,21 +32,21 @@
 block discarded – undo
32 32
 //	$inputFileType = 'OOCalc';
33 33
 //	$inputFileType = 'Gnumeric';
34 34
 $inputFileName = './sampleData/example1.xls';
35
-$sheetnames = array('Data Sheet #1','Data Sheet #3');
35
+$sheetnames = array('Data Sheet #1', 'Data Sheet #3');
36 36
 
37
-echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />';
37
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with a defined reader type of ', $inputFileType, '<br />';
38 38
 $objReader = PHPExcel_IOFactory::createReader($inputFileType);
39
-echo 'Loading Sheet',((count($sheetnames) == 1) ? '' : 's'),' "',implode('" and "',$sheetnames),'" only<br />';
39
+echo 'Loading Sheet', ((count($sheetnames) == 1) ? '' : 's'), ' "', implode('" and "', $sheetnames), '" only<br />';
40 40
 $objReader->setLoadSheetsOnly($sheetnames);
41 41
 $objPHPExcel = $objReader->load($inputFileName);
42 42
 
43 43
 
44 44
 echo '<hr />';
45 45
 
46
-echo $objPHPExcel->getSheetCount(),' worksheet',(($objPHPExcel->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />';
46
+echo $objPHPExcel->getSheetCount(), ' worksheet', (($objPHPExcel->getSheetCount() == 1) ? '' : 's'), ' loaded<br /><br />';
47 47
 $loadedSheetNames = $objPHPExcel->getSheetNames();
48
-foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) {
49
-	echo $sheetIndex,' -> ',$loadedSheetName,'<br />';
48
+foreach ($loadedSheetNames as $sheetIndex => $loadedSheetName) {
49
+	echo $sheetIndex, ' -> ', $loadedSheetName, '<br />';
50 50
 }
51 51
 
52 52
 
Please login to merge, or discard this patch.
Documentation/Examples/Reader/exampleReader14.php 2 patches
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -27,23 +27,23 @@  discard block
 block discarded – undo
27 27
 /**  Define a Read Filter class implementing PHPExcel_Reader_IReadFilter  */
28 28
 class chunkReadFilter implements PHPExcel_Reader_IReadFilter
29 29
 {
30
-	private $_startRow = 0;
31
-
32
-	private $_endRow = 0;
33
-
34
-	/**  Set the list of rows that we want to read  */
35
-	public function setRows($startRow, $chunkSize) {
36
-		$this->_startRow	= $startRow;
37
-		$this->_endRow		= $startRow + $chunkSize;
38
-	}
39
-
40
-	public function readCell($column, $row, $worksheetName = '') {
41
-		//  Only read the heading row, and the rows that are configured in $this->_startRow and $this->_endRow
42
-		if (($row == 1) || ($row >= $this->_startRow && $row < $this->_endRow)) {
43
-			return true;
44
-		}
45
-		return false;
46
-	}
30
+    private $_startRow = 0;
31
+
32
+    private $_endRow = 0;
33
+
34
+    /**  Set the list of rows that we want to read  */
35
+    public function setRows($startRow, $chunkSize) {
36
+        $this->_startRow	= $startRow;
37
+        $this->_endRow		= $startRow + $chunkSize;
38
+    }
39
+
40
+    public function readCell($column, $row, $worksheetName = '') {
41
+        //  Only read the heading row, and the rows that are configured in $this->_startRow and $this->_endRow
42
+        if (($row == 1) || ($row >= $this->_startRow && $row < $this->_endRow)) {
43
+            return true;
44
+        }
45
+        return false;
46
+    }
47 47
 }
48 48
 
49 49
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 /**  Tell the Reader that we want to use the Read Filter that we've Instantiated  **/
64 64
 /**    and that we want to store it in contiguous rows/columns  **/
65 65
 $objReader->setReadFilter($chunkFilter)
66
-		  ->setContiguous(true);
66
+            ->setContiguous(true);
67 67
 
68 68
 
69 69
 /**  Instantiate a new PHPExcel object manually  **/
@@ -74,13 +74,13 @@  discard block
 block discarded – undo
74 74
 /**  Loop to read our worksheet in "chunk size" blocks  **/
75 75
 /**  $startRow is set to 2 initially because we always read the headings in row #1  **/
76 76
 for ($startRow = 2; $startRow <= 240; $startRow += $chunkSize) {
77
-	echo 'Loading WorkSheet #',($sheet+1),' using configurable filter for headings row 1 and for rows ',$startRow,' to ',($startRow+$chunkSize-1),'<br />';
78
-	/**  Tell the Read Filter, the limits on which rows we want to read this iteration  **/
79
-	$chunkFilter->setRows($startRow,$chunkSize);
77
+    echo 'Loading WorkSheet #',($sheet+1),' using configurable filter for headings row 1 and for rows ',$startRow,' to ',($startRow+$chunkSize-1),'<br />';
78
+    /**  Tell the Read Filter, the limits on which rows we want to read this iteration  **/
79
+    $chunkFilter->setRows($startRow,$chunkSize);
80 80
 
81 81
     /**  Increment the worksheet index pointer for the Reader  **/
82 82
     $objReader->setSheetIndex($sheet);
83
-	/**  Load only the rows that match our filter into a new worksheet in the PHPExcel Object  **/
83
+    /**  Load only the rows that match our filter into a new worksheet in the PHPExcel Object  **/
84 84
     $objReader->loadIntoExisting($inputFileName,$objPHPExcel);
85 85
     /**  Set the worksheet title (to reference the "sheet" of data that we've loaded)  **/
86 86
     /**    and increment the sheet index as well  **/
@@ -93,11 +93,11 @@  discard block
 block discarded – undo
93 93
 echo $objPHPExcel->getSheetCount(),' worksheet',(($objPHPExcel->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />';
94 94
 $loadedSheetNames = $objPHPExcel->getSheetNames();
95 95
 foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) {
96
-	echo '<b>Worksheet #',$sheetIndex,' -> ',$loadedSheetName,'</b><br />';
97
-	$objPHPExcel->setActiveSheetIndexByName($loadedSheetName);
98
-	$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,false,false,true);
99
-	var_dump($sheetData);
100
-	echo '<br />';
96
+    echo '<b>Worksheet #',$sheetIndex,' -> ',$loadedSheetName,'</b><br />';
97
+    $objPHPExcel->setActiveSheetIndexByName($loadedSheetName);
98
+    $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,false,false,true);
99
+    var_dump($sheetData);
100
+    echo '<br />';
101 101
 }
102 102
 
103 103
 ?>
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
 
34 34
 	/**  Set the list of rows that we want to read  */
35 35
 	public function setRows($startRow, $chunkSize) {
36
-		$this->_startRow	= $startRow;
37
-		$this->_endRow		= $startRow + $chunkSize;
36
+		$this->_startRow = $startRow;
37
+		$this->_endRow = $startRow + $chunkSize;
38 38
 	}
39 39
 
40 40
 	public function readCell($column, $row, $worksheetName = '') {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 }
48 48
 
49 49
 
50
-echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />';
50
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with a defined reader type of ', $inputFileType, '<br />';
51 51
 /**  Create a new Reader of the type defined in $inputFileType  **/
52 52
 $objReader = PHPExcel_IOFactory::createReader($inputFileType);
53 53
 
@@ -74,28 +74,28 @@  discard block
 block discarded – undo
74 74
 /**  Loop to read our worksheet in "chunk size" blocks  **/
75 75
 /**  $startRow is set to 2 initially because we always read the headings in row #1  **/
76 76
 for ($startRow = 2; $startRow <= 240; $startRow += $chunkSize) {
77
-	echo 'Loading WorkSheet #',($sheet+1),' using configurable filter for headings row 1 and for rows ',$startRow,' to ',($startRow+$chunkSize-1),'<br />';
77
+	echo 'Loading WorkSheet #', ($sheet + 1), ' using configurable filter for headings row 1 and for rows ', $startRow, ' to ', ($startRow + $chunkSize - 1), '<br />';
78 78
 	/**  Tell the Read Filter, the limits on which rows we want to read this iteration  **/
79
-	$chunkFilter->setRows($startRow,$chunkSize);
79
+	$chunkFilter->setRows($startRow, $chunkSize);
80 80
 
81 81
     /**  Increment the worksheet index pointer for the Reader  **/
82 82
     $objReader->setSheetIndex($sheet);
83 83
 	/**  Load only the rows that match our filter into a new worksheet in the PHPExcel Object  **/
84
-    $objReader->loadIntoExisting($inputFileName,$objPHPExcel);
84
+    $objReader->loadIntoExisting($inputFileName, $objPHPExcel);
85 85
     /**  Set the worksheet title (to reference the "sheet" of data that we've loaded)  **/
86 86
     /**    and increment the sheet index as well  **/
87
-    $objPHPExcel->getActiveSheet()->setTitle('Country Data #'.(++$sheet));
87
+    $objPHPExcel->getActiveSheet()->setTitle('Country Data #' . (++$sheet));
88 88
 }
89 89
 
90 90
 
91 91
 echo '<hr />';
92 92
 
93
-echo $objPHPExcel->getSheetCount(),' worksheet',(($objPHPExcel->getSheetCount() == 1) ? '' : 's'),' loaded<br /><br />';
93
+echo $objPHPExcel->getSheetCount(), ' worksheet', (($objPHPExcel->getSheetCount() == 1) ? '' : 's'), ' loaded<br /><br />';
94 94
 $loadedSheetNames = $objPHPExcel->getSheetNames();
95
-foreach($loadedSheetNames as $sheetIndex => $loadedSheetName) {
96
-	echo '<b>Worksheet #',$sheetIndex,' -> ',$loadedSheetName,'</b><br />';
95
+foreach ($loadedSheetNames as $sheetIndex => $loadedSheetName) {
96
+	echo '<b>Worksheet #', $sheetIndex, ' -> ', $loadedSheetName, '</b><br />';
97 97
 	$objPHPExcel->setActiveSheetIndexByName($loadedSheetName);
98
-	$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,false,false,true);
98
+	$sheetData = $objPHPExcel->getActiveSheet()->toArray(null, false, false, true);
99 99
 	var_dump($sheetData);
100 100
 	echo '<br />';
101 101
 }
Please login to merge, or discard this patch.
Documentation/Examples/Reader/exampleReader18.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 echo '<h3>Worksheet Names</h3>';
42 42
 echo '<ol>';
43 43
 foreach ($worksheetNames as $worksheetName) {
44
-	echo '<li>', $worksheetName, '</li>';
44
+    echo '<li>', $worksheetName, '</li>';
45 45
 }
46 46
 echo '</ol>';
47 47
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 //	$inputFileType = 'Gnumeric';
34 34
 $inputFileName = './sampleData/example1.xls';
35 35
 
36
-echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' information using IOFactory with a defined reader type of ',$inputFileType,'<br />';
36
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' information using IOFactory with a defined reader type of ', $inputFileType, '<br />';
37 37
 
38 38
 $objReader = PHPExcel_IOFactory::createReader($inputFileType);
39 39
 $worksheetData = $objReader->listWorksheetInfo($inputFileName);
Please login to merge, or discard this patch.
Documentation/Examples/Reader/exampleReader05.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 //	$inputFileType = 'Gnumeric';
34 34
 $inputFileName = './sampleData/example1.xls';
35 35
 
36
-echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />';
36
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory with a defined reader type of ', $inputFileType, '<br />';
37 37
 $objReader = PHPExcel_IOFactory::createReader($inputFileType);
38 38
 echo 'Turning Formatting off for Load<br />';
39 39
 $objReader->setReadDataOnly(true);
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
 echo '<hr />';
44 44
 
45
-$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true);
45
+$sheetData = $objPHPExcel->getActiveSheet()->toArray(null, true, true, true);
46 46
 var_dump($sheetData);
47 47
 
48 48
 
Please login to merge, or discard this patch.
Documentation/Examples/Reader/exampleReader19.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,10 +41,10 @@
 block discarded – undo
41 41
 echo '<h3>Worksheet Information</h3>';
42 42
 echo '<ol>';
43 43
 foreach ($worksheetData as $worksheet) {
44
-	echo '<li>', $worksheet['worksheetName'], '<br />';
45
-	echo 'Rows: ', $worksheet['totalRows'], ' Columns: ', $worksheet['totalColumns'], '<br />';
46
-	echo 'Cell Range: A1:', $worksheet['lastColumnLetter'], $worksheet['totalRows'];
47
-	echo '</li>';
44
+    echo '<li>', $worksheet['worksheetName'], '<br />';
45
+    echo 'Rows: ', $worksheet['totalRows'], ' Columns: ', $worksheet['totalColumns'], '<br />';
46
+    echo 'Cell Range: A1:', $worksheet['lastColumnLetter'], $worksheet['totalRows'];
47
+    echo '</li>';
48 48
 }
49 49
 echo '</ol>';
50 50
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 //	$inputFileType = 'Gnumeric';
34 34
 $inputFileName = './sampleData/example1.xls';
35 35
 
36
-echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' information using IOFactory with a defined reader type of ',$inputFileType,'<br />';
36
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' information using IOFactory with a defined reader type of ', $inputFileType, '<br />';
37 37
 
38 38
 $objReader = PHPExcel_IOFactory::createReader($inputFileType);
39 39
 $worksheetData = $objReader->listWorksheetInfo($inputFileName);
Please login to merge, or discard this patch.
Documentation/Examples/index.php 2 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -21,28 +21,28 @@
 block discarded – undo
21 21
 
22 22
 foreach($exampleTypeList as $exampleType) {
23 23
 
24
-	echo '<h1>PHPExcel ' . pathinfo($exampleType,PATHINFO_BASENAME) . ' Examples</h1>';
24
+    echo '<h1>PHPExcel ' . pathinfo($exampleType,PATHINFO_BASENAME) . ' Examples</h1>';
25 25
 
26
-	$exampleList = glob('./'.$exampleType.'/*.php');
26
+    $exampleList = glob('./'.$exampleType.'/*.php');
27 27
 
28
-	foreach($exampleList as $exampleFile) {
29
-		$fileData = file_get_contents($exampleFile);
28
+    foreach($exampleList as $exampleFile) {
29
+        $fileData = file_get_contents($exampleFile);
30 30
 
31
-		$h1Pattern = '#<h1>(.*?)</h1>#';
32
-		$h2Pattern = '#<h2>(.*?)</h2>#';
31
+        $h1Pattern = '#<h1>(.*?)</h1>#';
32
+        $h2Pattern = '#<h2>(.*?)</h2>#';
33 33
 
34
-		if (preg_match($h1Pattern, $fileData, $out)) {
35
-			$h1Text = $out[1];
36
-			$h2Text = (preg_match($h2Pattern, $fileData, $out)) ? $out[1] : '';
34
+        if (preg_match($h1Pattern, $fileData, $out)) {
35
+            $h1Text = $out[1];
36
+            $h2Text = (preg_match($h2Pattern, $fileData, $out)) ? $out[1] : '';
37 37
 
38
-			echo '<a href="',$exampleFile,'">',$h1Text,'</a><br />';
39
-			if (($h2Text > '') &&
40
-				(pathinfo($exampleType,PATHINFO_BASENAME) != 'Calculations')) {
41
-				echo $h2Text,'<br />';
42
-			}
43
-		}
38
+            echo '<a href="',$exampleFile,'">',$h1Text,'</a><br />';
39
+            if (($h2Text > '') &&
40
+                (pathinfo($exampleType,PATHINFO_BASENAME) != 'Calculations')) {
41
+                echo $h2Text,'<br />';
42
+            }
43
+        }
44 44
 
45
-	}
45
+    }
46 46
 }
47 47
 
48 48
 ?>
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -17,15 +17,15 @@  discard block
 block discarded – undo
17 17
 
18 18
 <?php
19 19
 
20
-$exampleTypeList = glob('./*',GLOB_ONLYDIR);
20
+$exampleTypeList = glob('./*', GLOB_ONLYDIR);
21 21
 
22
-foreach($exampleTypeList as $exampleType) {
22
+foreach ($exampleTypeList as $exampleType) {
23 23
 
24
-	echo '<h1>PHPExcel ' . pathinfo($exampleType,PATHINFO_BASENAME) . ' Examples</h1>';
24
+	echo '<h1>PHPExcel ' . pathinfo($exampleType, PATHINFO_BASENAME) . ' Examples</h1>';
25 25
 
26
-	$exampleList = glob('./'.$exampleType.'/*.php');
26
+	$exampleList = glob('./' . $exampleType . '/*.php');
27 27
 
28
-	foreach($exampleList as $exampleFile) {
28
+	foreach ($exampleList as $exampleFile) {
29 29
 		$fileData = file_get_contents($exampleFile);
30 30
 
31 31
 		$h1Pattern = '#<h1>(.*?)</h1>#';
@@ -35,10 +35,10 @@  discard block
 block discarded – undo
35 35
 			$h1Text = $out[1];
36 36
 			$h2Text = (preg_match($h2Pattern, $fileData, $out)) ? $out[1] : '';
37 37
 
38
-			echo '<a href="',$exampleFile,'">',$h1Text,'</a><br />';
38
+			echo '<a href="', $exampleFile, '">', $h1Text, '</a><br />';
39 39
 			if (($h2Text > '') &&
40
-				(pathinfo($exampleType,PATHINFO_BASENAME) != 'Calculations')) {
41
-				echo $h2Text,'<br />';
40
+				(pathinfo($exampleType, PATHINFO_BASENAME) != 'Calculations')) {
41
+				echo $h2Text, '<br />';
42 42
 			}
43 43
 		}
44 44
 
Please login to merge, or discard this patch.