首页 > 后端开发 > php教程 > 如何自动require加载配置?

如何自动require加载配置?

WBOY
发布: 2016-06-06 20:31:10
原创
1292 人浏览过

我每次写控制器时候,总是加载它才能运行(MEDOO数据类)
写法是

<code><br>    class ListController{ 

        function index() { 

            require('Config/Conn.php'); 
            $db=$data->select("mini_content",[
                 "id",
                 "title" ,
                 "content"
           ]
        } 

    } 

</code>
登录后复制
登录后复制

我把它放外面不起作用了

<code>require('Config/Conn.php'); 
class ListController{ 

    function index() { 
        $db=$data->select("mini_content",[
             "id",
             "title" ,
             "content"
       ]
    } 

} 

</code>
登录后复制
登录后复制

将来以后还要写控制器,一个一个写require('Config/Conn.php'); 很麻烦
例子:

<code><br>     function index() { 

        require('Config/Conn.php'); 
    } 
     function xxx() { 

        require('Config/Conn.php'); 
    } 
     function xxx2() { 

        require('Config/Conn.php'); 
    } 

</code>
登录后复制
登录后复制

有什么办法 自定函数自动认require('Config/Conn.php'); 呢?

回复内容:

我每次写控制器时候,总是加载它才能运行(MEDOO数据类)
写法是

<code><br>    class ListController{ 

        function index() { 

            require('Config/Conn.php'); 
            $db=$data->select("mini_content",[
                 "id",
                 "title" ,
                 "content"
           ]
        } 

    } 

</code>
登录后复制
登录后复制

我把它放外面不起作用了

<code>require('Config/Conn.php'); 
class ListController{ 

    function index() { 
        $db=$data->select("mini_content",[
             "id",
             "title" ,
             "content"
       ]
    } 

} 

</code>
登录后复制
登录后复制

将来以后还要写控制器,一个一个写require('Config/Conn.php'); 很麻烦
例子:

<code><br>     function index() { 

        require('Config/Conn.php'); 
    } 
     function xxx() { 

        require('Config/Conn.php'); 
    } 
     function xxx2() { 

        require('Config/Conn.php'); 
    } 

</code>
登录后复制
登录后复制

有什么办法 自定函数自动认require('Config/Conn.php'); 呢?

google composer

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板