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.
16 lines
250 B
16 lines
250 B
11 months ago
|
<?php
|
||
|
|
||
|
namespace app\api\controller;
|
||
|
|
||
|
/**
|
||
|
* 默认控制器
|
||
|
* Class Index
|
||
|
* @package app\api\controller
|
||
|
*/
|
||
|
class Index
|
||
|
{
|
||
|
public function index()
|
||
|
{
|
||
|
echo '当前访问的index.php,请将index.html设为默认站点入口';
|
||
|
}
|
||
|
}
|