forked from NEKOGET/FuelPHP_docs_jp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.html
112 lines (104 loc) · 4.44 KB
/
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/combined.css">
<link rel="shortcut icon" href="./favicon.ico" />
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
var path = './';
</script>
<script src="./assets/js/combined.js"></script>
<title>要件 - FuelPHP ドキュメント</title>
</head>
<body>
<div id="container">
<header id="header">
<div class="table">
<h1>
<strong>FuelPHP, a PHP 5.3 Framework</strong>
Documentation
</h1>
<form id="google_search">
<p>
<span id="search_clear"> </span>
<input type="submit" name="search_submit" id="search_submit" value="検索" />
<input type="text" value="" id="search_input" name="search_input" />
</p>
</form>
</div>
<nav>
<div class="clear"></div>
</nav>
<a href="#" id="toc_handle">目次</a>
<div class="clear"></div>
</header>
<div id="cse">
<div id="cse_point"></div>
<div id="cse_content"></div>
</div>
<div id="main">
<h2>要件</h2>
<h5 id="web_server">Web サーバ</h5>
<ul>
<li>任意の Web サーバ。Fuel は、Apache、IIS そして Nginx でテストされています。</li>
<li>*nix や Windows 等の主なオペレーティングシステム上で動作します。</li>
</ul>
<h5 id="php_version">PHP バージョン</h5>
<ul>
<li>バージョン 5.3.3 以降が必要です。</li>
</ul>
<h5 id="php_extensions">PHP エクステンション</h5>
<p>
Fuel は、PHP が「エクステンション」として定義する機能を使用します。互換性の問題を避けるため、
Fuel は <a href="http://php.net">PHP Web サイト</a> に記載されている PHP コードの一部であるエクステンションのみ使用します。
(システム管理者が手作業でインストールする必要のある) PECL レポジトリの一部であるエクステンションが使用される場合は、Fuel はエクステンションが存在すれば使用しますが、無くても動作します。
</p>
<p>使用されるエクステンションと、エクステンションを使用するクラスの一覧です。</p>
<table class="config valign">
<tbody>
<tr>
<th class="small">エクステンション</th>
<th class="small">使用箇所</th>
<th>コメント</th>
</tr>
<tr>
<td>fileinfo</td>
<td>Upload</td>
<td><a href="http://php.net/manual/en/book.fileinfo.php">ドキュメント</a>。<br />
Windows プラットフォームでは、DLL を手作業でインストールする必要があるかもしれないので、注意してください。</td>
</tr>
<tr>
<td>mbstring</td>
<td>n/a</td>
<td><a href="http://php.net/manual/en/book.mbstring.php">ドキュメント</a>。<br />
これがない場合、フレームワークはマルチバイトをサポートしません。MBSTRING 定数をチェックすることで、マルチバイトサポートが有効かどうか確認できます。</td>
</tr>
<tr>
<td>mcrypt</td>
<td>Crypt</td>
<td><a href="http://php.net/manual/en/book.mcrypt.php">ドキュメント</a>。<br />
これがない場合、PHPSecLib を使用してこの機能をエミュレートします。</td>
</tr>
</tbody>
</table>
<h5 id="php_unit">PHPUnit</h5>
<ul>
<li>ユニットテストを実行するためには、<a href="http://phpunit.de/manual/current/ja/index.html">PHPUnit</a> バージョン 3.7 以上が必要です。</li>
</ul>
<h3 id="recommended">推奨環境</h3>
<ul>
<li>Web サーバ - Apache 2.4+、*nix 上で動作。</li>
<li>mod_rewrite - URL から index.php を取り除くため。</li>
</ul>
</div>
<footer>
<p>
© FuelPHP Development Team 2010-2015 - <a href="http://fuelphp.com">FuelPHP</a> is released under the MIT license.
[ <a href="https://github.com/fuel/docs/commits/1.8/develop/requirements.html">原文コミット履歴</a> | <a href="https://github.com/NEKOGET/FuelPHP_docs_jp/commits/1.8/develop_japanese/requirements.html">翻訳コミット履歴</a> | <a href="https://github.com/NEKOGET/FuelPHP_docs_jp/blob/1.8/develop_japanese/requirements.html">GitHubで修正</a> ]
</p>
</footer>
</div>
</body>
</html>