【TP5.1】超類解釋

author:咔咔

wechat:fangkangfk

 

超類:

是PHP的一個特殊類

超類就是定義了一些通用的方法,在其餘類中不須要繼承就能夠直接使用的超類的方法,而是經過use引入的類,至關於include這樣理解

 

在框架中使用的這幾個方法其實都是屬於超類裏邊的方法php

$this->success($msg,$url);

$this->error($msg,$url);

$this->result($data,$code,$msg,$type);

$this->redirect($url,$param);

超類對應的提示模板位置框架

 

超類的位置this

超類的用法:url

/**
 * 用法:
 * class index
 * {
 *     use \traits\controller\Jump;
 *     public function index(){
 *         $this->error();
 *         $this->redirect();
 *     }
 * }
 */

 

案例:spa

就拿咱們的controller這個類來講引入的Jump這個超類,咱們才能夠在控制器使用文章開頭的那四個方法的code

相關文章
相關標籤/搜索