このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
Tag Cloud
このページへのアクセス
今日: 5 / 昨日: 1
総計: 603
- Dokuwiki.fl8.jp(1809)
- FreeBSD カーネル再構築(38)
- 13 CentOS6メール設定(38)
- 01 Galera構築(33)
- 75 Proftpd(31)
最近の更新
このページへのアクセス
今日: 5 / 昨日: 1
総計: 603
config/*以下のconfigファイルをconfig()で呼び出す事ができます。
>>> config('session')
=> [
"driver" => "memcached",
"lifetime" => "1440",
"expire_on_close" => true,
"encrypt" => false,
"files" => "/home/matsui/portal.kumolabo.com-dev2/storage/framework/sessions",
"connection" => null,
"table" => "sessions",
"store" => null,
"lottery" => [
2,
100,
],
"cookie" => "laraveldev_session",
"path" => "/",
"domain" => null,
"secure" => false,
"http_only" => true,
"same_site" => null,
]
$ cat config/const.php <?php return [ 'hogehoge' => [ 'name' => 'hoge', 'status' => 1, ] ]; >>> config('const2') => [ "hogehoge" => [ "name" => "hoge", "status" => 1, ], ]