Heim > Fragen und Antworten > Hauptteil
index.php
<?php
namespace appindexcontroller;
use appindexcontrollerBase;
class Index erweitert Base
{
public function index()
{
return $this-> view ->fetch(); }
}
基类
<?php
namespace appindexcontroller;
use thinkcontroller;
class Base erweitert Controller
{
}