frame_main.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2017/12/11/011
  6. * Time: 19:37
  7. */
  8. ?>
  9. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  10. <html xmlns="http://www.w3.org/1999/xhtml">
  11. <head>
  12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  13. <title>BIT System 后台管理平台</title>
  14. <link href="<?= STATIC_URL?>/static/cp/bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css" />
  15. <link href="<?= STATIC_URL?>/static/cp/css/base.css" rel="stylesheet" type="text/css" />
  16. <link href="<?= STATIC_URL?>/static/cp/css/admin.css" rel="stylesheet" type="text/css" />
  17. <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
  18. <!--[if lt IE 9]>
  19. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  20. <![endif]-->
  21. <script src="<?= STATIC_URL?>/static/cp/js/jquery-1.7.2.min.js"></script>
  22. <script src="<?= STATIC_URL?>/static/cp/bootstrap/js/bootstrap.js"></script>
  23. <script src="<?= STATIC_URL?>/static/cp/js/admin.js"></script>
  24. </head>
  25. <body id="main">
  26. <div class="main-nav"> <span>欢迎使用BIT System 后台管理平台</span></div>
  27. <div class="main-content">
  28. <div class="form-or-table">
  29. <table id="list-table" class="table table-striped table-bordered">
  30. <tbody>
  31. <tr>
  32. <th width="120px">PHP版本:</th>
  33. <td><?= PHP_VERSION ?></td>
  34. </tr>
  35. <tr>
  36. <th>操作系统名称:</th>
  37. <td><?= PHP_OS ?></td>
  38. </tr>
  39. <tr>
  40. <th>操作系统构架:</th>
  41. <td>amd64</td>
  42. </tr>
  43. <tr>
  44. <th>操作系统版本:</th>
  45. <td><?= php_uname('r') ?></td>
  46. </tr>
  47. <tr>
  48. <th>SERVER信息:</th>
  49. <td><?= $_SERVER['SERVER_SOFTWARE'] ?> </td>
  50. </tr>
  51. </tbody>
  52. </table>
  53. </div>
  54. </div>
  55. </body>
  56. </html>