一抄课、擴展自己的類
在app/ 下建立目錄 libraries\class
然后myTest.php 類名格式 駝峰 myTest
class myTest
{
public? function test()
{
return '1asdasd111';
}
}
在 app/start/global.php
ClassLoader::addDirectories(array(
app_path().'/commands',
app_path().'/controllers',
app_path().'/models',
app_path().'/database/seeds',
app_path().'/libraries/class', //增加這一段
));
用 make 載入
class HomeController extends BaseController {
protected $layout = 'layouts.main';
public function index()
{
$a = App::make('mytest'); // 用法
echo $a->test();
}
}
二、擴展自己的函數(shù)(個人覺得第一種方法比較好)
在app/ 下建立目錄 libraries\function
建立helper.php
函數(shù)格式,如下用function_exists,防止與系統(tǒng)重名
if (! function_exists('test2'))
{
function test2()
{
echo 2222222222222222;
}
}
方法一:
在 app/filters.php
App::before(function($request)
{
require app_path().'/libraries/function/helper.php'; //載入 自定義函數(shù)
});
方法二:
在app/bootstrap/autolad.php
require __DIR__.'/../app/functions.php'; // 引入自定義函數(shù)庫