Index.php 818 B

123456789101112131415161718
  1. <?php
  2. namespace app\controller;
  3. use app\BaseController;
  4. class Index extends BaseController
  5. {
  6. public function index()
  7. {
  8. return '<style type="text/css">*{ padding: 0; margin: 0; } div{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px;} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px }</style><div style="padding: 24px 48px;"> <h1>:) </h1><p> 宇宸API<br/><span style="font-size:30px;">广东宇宸信息科技有限公司</span></p></div><think id="ee9b1aa918103c4fc"></think>';
  9. }
  10. public function hello($name = 'ThinkPHP6')
  11. {
  12. return 'hello,' . $name;
  13. }
  14. }