Home  >  Article  >  Backend Development  >  Laravel study notes

Laravel study notes

WBOY
WBOYOriginal
2016-08-08 09:28:45971browse

1.Laravel 5 dynamically set cache engine

 \Config::set('cache.default','redis');
var_dump( \Config::get('cache.default') );
 \Config::set('cache.default','memcached');
var_dump( \Config::get('cache.default') );

2.Laravel 5 has the same effect as use IlluminateSupportFacades

3. The storage directory cannot be written and read under Laravel 5 Linux

#chown -R www:www storage //注:www www是nginx的用户和组 在nginx.conf中查看
#还是不行的话
#php artisan cache:clear 清除应用程序缓存

The above introduces the Laravel study notes, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
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