首頁 >後端開發 >php教程 >如何自动require加载配置?

如何自动require加载配置?

WBOY
WBOY原創
2016-06-06 20:31:101284瀏覽

我每次写控制器时候,总是加载它才能运行(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

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn