index.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5. <meta http-equiv="content-language" content="en"/>
  6. <link rel="stylesheet" type="text/css" href="css/main.css" />
  7. <title>Yii Requirement Checker</title>
  8. </head>
  9. <body>
  10. <div id="page">
  11. <div id="header">
  12. <h1>Yii要求チェッカ</h1>
  13. </div><!-- header-->
  14. <div id="content">
  15. <h2>説明</h2>
  16. <p>
  17. このスクリプトは、あなたのサーバ構成が、<a href="http://www.yiiframework.com/">Yii</a>アプリケーション
  18. を実行するための要求を満たしているかどうかを確認します。
  19. このスクリプトはサーバにおいて正しいバージョンのPHPを実行しているか、適切なPHP拡張をロードしているか、php.iniファイル設定が正しいか
  20. を確認します。
  21. </p>
  22. <h2>結果</h2>
  23. <p>
  24. <?php if($result>0): ?>
  25. おめでとうございます。あなたのサーバ構成はYiiの全ての要求を満しています。
  26. <?php elseif($result<0): ?>
  27. あなたのサーバ構成はYiiの最低限の要求を満しています。もしあなたのアプリケーションが対応する機能を
  28. 使用している場合には以下の警告に注意してください。
  29. <?php else: ?>
  30. 申し訳ありませんが、あなたのサーバ構成はYiiの要求を満していません。
  31. <?php endif; ?>
  32. </p>
  33. <h2>詳細</h2>
  34. <table class="result">
  35. <tr><th>名称</th><th>結果</th><th>必要元</th><th>備考</th></tr>
  36. <?php foreach($requirements as $requirement): ?>
  37. <tr>
  38. <td>
  39. <?php echo $requirement[0]; ?>
  40. </td>
  41. <td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>">
  42. <?php echo $requirement[2] ? '合格' : ($requirement[1] ? '不合格' : '注意'); ?>
  43. </td>
  44. <td>
  45. <?php echo $requirement[3]; ?>
  46. </td>
  47. <td>
  48. <?php echo $requirement[4]; ?>
  49. </td>
  50. </tr>
  51. <?php endforeach; ?>
  52. </table>
  53. <table>
  54. <tr>
  55. <td class="passed">&nbsp;</td><td>合格</td>
  56. <td class="failed">&nbsp;</td><td>不合格</td>
  57. <td class="warning">&nbsp;</td><td>注意</td>
  58. </tr>
  59. </table>
  60. </div><!-- content -->
  61. <div id="footer">
  62. <?php echo $serverInfo; ?>
  63. </div><!-- footer -->
  64. </div><!-- page -->
  65. </body>
  66. </html>