Two tips for PHP framework Laravel, two tips for laravel_PHP tutorial

WBOY
Release: 2016-07-13 10:07:07
Original
626 people have browsed it

Two tips for PHP framework Laravel, two tips for laravel

I have been using Laravel as a PHP development framework for a long time, but there are some things that are not covered in the official documents and I forget them every once in a while. I did some simple organizing recently and took notes on it.

1. Route::controller route naming:

Using Route::controller can reduce a lot of work in route customization, but sometimes it is necessary to name a specific route for use, but the Route::controller method batches the routes for all methods in a Controller. This How to name it? You can use the third parameter in controller($uri, $controller, $names = array()). This is an array. The key of the array is the method and the value of the array is the name.

Copy code The code is as follows:

// Signature of this function:
public function controller($uri, $controller, $names = array())

// Generally used without naming:
Route::controller('admin', 'AdminController');

// If you need to name some of the methods:
Route::controller('admin', 'AdminController', array(
'getIndex' => 'admin.index',
'getLogin' => 'admin.login',
'postLogin' => 'admin.login'
));

2. Determine the current operating environment based on system variables

The system's default method of determining whether it is a local environment is to specify a set of host names as the local environment in the 'local' array. For example, if you are doing development on an office computer or Macbook, you need to add the two host names. I think it’s very troublesome to write everything down. It was changed to judge based on $_SERVER['LARAVEL_ENV'], so that I can define the environment variable of 'LARAVEL_ENV' in all development machines with the value of 'local', so the development machine will automatically recognize it as the 'local' environment. , and 'production' in other cases.

Copy code The code is as follows:

//The default way of writing is to determine whether it is a local environment based on the host name
$env = $app->detectEnvironment(array(
'local' => array('homestead');
));

// Modify to first determine whether the system variable is specified, and then determine the host name if not
$env = $app->detectEnvironment(function(){
$_env = getenv('LARAVEL_ENV') ? getenv('LARAVEL_ENV') : array(
       'local' => array('homestead')
);
Return $_env;
});

// This actually reads the value of $_SERVER['LARAVEL_ENV']
// In Apache, it can be set with SetEnv,
// In Nginx, you can use fastcgi_param to set

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/955979.htmlTechArticleTwo tips for PHP framework Laravel, two tips for laravel I have used Laravel as a PHP development framework for a long time, but There are some places that are not covered in the official documents, and every once in a while...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!