1. 独自のクラスを展開します
app/ の下にディレクトリ libraryclass を作成します
次に、myTest.php のクラス名をキャメルケース形式で myTest
<?php 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 を使用してロードします
<?php class HomeController extends BaseController { protected $layout = 'layouts.main'; public function index() { $a = App::make('mytest'); // 用法 echo $a->test(); } }
2独自の関数を拡張します
app/の下にディレクトリ libraryfunction を作成します
helper.php
function 形式を作成し、次のように function_exists を使用してシステムとの名前の重複を防ぎます
if (! function_exists('test2')) { function test2() { echo 2222222222222222; } }
方法 1:
app/filters 内。 php
App::before(function($request) { require app_path().'/libraries/function/helper.php'; //载入 自定义函数 });
方法 2:
app/bootstrap/autolad.php
require __DIR__.'/../app/functions.php'; // 引入自定义函数库
方法 1 の方が良いと思います。
拡張機能とLaravelフレームワークでカスタムクラスを拡張する方法に関連するその他の記事については、PHP中国語Webサイトに注目してください。