mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
16 lines
321 B
PHP
16 lines
321 B
PHP
<?php
|
|
namespace app\index\controller;
|
|
|
|
use think\Controller;
|
|
use think\Db;
|
|
|
|
class Index extends Controller {
|
|
|
|
public function index() {
|
|
$version = Db::query('select version() as ver');
|
|
$version = array_pop($version);
|
|
$this->assign('mysql_ver', $version['ver']);
|
|
return view();
|
|
}
|
|
}
|