Heim >php教程 >php手册 >thinkphp中空模板与空模块的用法实例,thinkphp中空

thinkphp中空模板与空模块的用法实例,thinkphp中空

WBOY
WBOYOriginal
2016-06-13 09:20:06852Durchsuche

thinkphp中空模板与空模块的用法实例,thinkphp中空

本文实例讲述了thinkphp中空模板与空模块的用法。分享给大家供大家参考。具体实现方法如下:

1. 空操作

复制代码 代码如下:

function _empty($name){
            $this-]show("$name 不存在 [a href='__APP__/Index/index']返回首页[/a]");
}


2. 空模块

复制代码 代码如下:

class EmptyAction extends Action{
        function index(){
            $city=M('City');
            $arr=$city-]select();
            $this-]assign('list',$arr);
            $name=MODULE_NAME;//获得当前地址栏的模块名
            $this-]display("City:$name");//引用对应的模块
        }
}

希望本文所述对大家的ThinkPHP框架程序设计有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn