gpt4 book ai didi

php - 获取整个语言文件数组

转载 作者:IT王子 更新时间:2023-10-28 23:44:59 25 4
gpt4 key购买 nike

我是 laravel 4.0 的新手。

  • 如何从lang/en/texts.php获取整个数组?
  • 是否有 Lang::getAll() 方法?

我的目标是在我的基本 Controller 中生成关键字/描述,将它们填充到 master blade 模板中的元标记和 DOM 中的其他位置。如果我的方法完全错误,请告诉我!

从关联数组生成关键字和描述不是问题,而是缺乏对框架的了解。而且,在结束这里之前我在谷歌上搜索了很长一段时间......

使用 Blade 模板:这是我的 BaseController:

class HomeController extends BaseController {

protected $layout = 'layouts.master';
private $keyWords = array();

private function getKeyWords () {
// ???

}

public function getIndex() {
return View::make('home')
->with('errorcanvas', trans('texts.canvas'))
->with('errortextwebgl', trans('texts.webgl'))
...;
}

...

}

我在 API 中找到了一些东西:

Illuminate\Translation\FileLoader load() 用给定的 locale 加载消息...

最佳答案

您可以get the entire array使用 Lang::get().

$array = Lang::get('pagination'); // return entire array
$text = Lang::get('pagination.next'); // return single item

关于php - 获取整个语言文件数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20718291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com