亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Imitate $this->show() in TP5 Controller
RiVol
RiVol 2018-03-07 00:00:03
0
2
1562

class Controller{ # Controller base class

public function show(){ # Load the view page

require "./App/".PLATFORM."/View/".CONTROLLER ."/".ACTION.".php";

}

}


RiVol
RiVol

老鐵們,穩(wěn)!

reply all(1)
右耳

After using the above code, the Model layer data will become invalid, so I modified it:

Put the following code into the Model:

class Model{

# Load the view page

public function show(){

return "./App/".PLATFORM."/View/".CONTROLLER."/".ACTION.". php";

}

}

Call

$ind = new IndexModel();

require $ind->show();


  • reply Welcome everyone to correct me
    RiVol author 2018-03-07 00:30:18
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template