gpt4 book ai didi

laravel - 如何在 Laravel 4 中设置本地环境

转载 作者:行者123 更新时间:2023-12-04 04:43:47 24 4
gpt4 key购买 nike

我只想将本地环境设置为 Laravel 4。

bootstrap/start.php我有:

$env = $app->detectEnvironment(array(
'local' => ['laravel.dev', ''],
));

我尝试将本地更改为数组中的开发索引,但没有任何效果。
我尝试了这个页面的一些提示: http://laravel.com/docs/configuration ... 没有。

我在控制台中使用工匠,总是说我:
**************************************
* Application In Production! *
**************************************

Do you really wish to run this command?

我可以怎么做才能让 Lara 知道我在本地环境中?

最佳答案

你可以试试这个(在 bootstrap/start.php 文件中):

$env = $app->detectEnvironment(array(
'local' => ['*.dev', gethostname()],
'production' => ['*.com', '*.net', '*.org']
));

这也是可能的:
$env = $app->detectEnvironment(function() {

return gethostname() == 'your local machine name' ? 'local' : 'production';
});

关于laravel - 如何在 Laravel 4 中设置本地环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24108346/

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