Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Index.php 458B

123456789101112131415161718
  1. <?php
  2. namespace app\index\controller;
  3. use app\BaseController;
  4. class Index extends BaseController
  5. {
  6. public function index()
  7. {
  8. return '<style>*{ padding: 0; margin: 0; }</style><iframe src="https://www.thinkphp.cn/welcome?version=' . \think\facade\App::version() . '" width="100%" height="100%" frameborder="0" scrolling="auto"></iframe>';
  9. }
  10. public function hello($name = 'ThinkPHP8')
  11. {
  12. return 'hello,' . $name;
  13. }
  14. }