-
Notifications
You must be signed in to change notification settings - Fork 26
/
phpexcel_requirements.html
73 lines (72 loc) · 2.95 KB
/
phpexcel_requirements.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PHPOffice</title>
<link href="statics/css/bootstrap.min.css" rel="stylesheet">
<link href="statics/css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="statics/css/gh-fork-ribbon.css" rel="stylesheet" />
<!--[if IE]>
<link href="statics/css/gh-fork-ribbon.ie.css" rel="stylesheet" />
<![endif]-->
<link href="statics/css/style.css" rel="stylesheet">
</head>
<body>
<div class="github-fork-ribbon-wrapper right">
<div class="github-fork-ribbon">
<a href="https://github.com/PHPOffice/PHPExcel">Fork me on GitHub</a>
</div>
</div>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="index.html">PHPOffice</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="phpexcel_features.html">PHPExcel</a></li>
<li><a href="#">PHPPowerPoint</a></li>
<li><a href="#">PHPProject</a></li>
<li><a href="#">PHPVisio</a></li>
<li><a href="#">PHPWord</a></li>
</ul>
</div><!-- /.nav-collapse -->
</div>
</div><!-- /navbar-inner -->
</div><!-- /navbar -->
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="team.html">Team</a></li>
<li class="nav-header">PHPExcel</li>
<li><a href="phpexcel_news.html">News</a></li>
<li><a href="phpexcel_features.html">Features</a></li>
<li class="active"><a href="phpexcel_requirements.html">Requirements</a></li>
<li><a href="phpexcel_faq.html">FAQ</a></li>
<li><a href="phpexcel_contribute.html">Contribute</a></li>
<li><a href="phpexcel_roadmap.html">Roadmap</a></li>
<li><a href="phpexcel_resources.html">Resources</a></li>
<li><a href="phpexcel_credits.html">Credits</a></li>
</ul>
</div><!--/.well -->
</div><!--/span-->
<div class="span10">
<h1>Requirements</h1>
<ul>
<li>PHP version 5.2.0 or higher</li>
<li>PHP extension php_zip enabled <strong>*</strong></li>
<li>PHP extension php_xml enabled</li>
<li>PHP extension php_gd2 enabled (if not compiled in)</li>
</ul>
<p>All part of the PHP package (zip) on http://www.php.net/downloads.php, should be enabled in php.ini</p>
<p class="muted"><strong>*</strong>) php_zip is only needed by PHPExcel_Reader_Excel2007, PHPExcel_Writer_Excel2007, PHPExcel_Reader_OOCalc.<br/>In other words, if you need PHPExcel to handle .xlsx or .ods files you will need the zip extension, but otherwise not.</p>
</div><!--/span-->
</div><!--/row-->
</div><!--/.fluid-container-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="statics/js/bootstrap.min.js"></script>
</body>
</html>