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