码迷,mamicode.com
首页 > 其他好文 > 详细

laravel下的cookie、session、缓存和提交信息处理

时间:2014-11-26 18:11:44      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   io   ar   color   sp   for   文件   

$value = Cookie::get(‘name‘);
$response = Response::make(‘world‘);
$response->withcookie(Cookie::make(‘name‘,‘value‘,$minutes));
$cookie = Cookie::forever(‘name‘,‘value‘);

//Session
Input::flash(); //将用户提交的信息存入session
Input::flashonly();
Input::flashexcept();

Input::old(‘username‘);//获取已持久化的信息
$file = Input::file(‘photo‘);//文件上传
$file->move($destinationpath,$fileName);
$file->getRealPath();//已上传文件在服务器上的路径
$file->getSize();//文件大小
$file->getMimeType(); //文件的MIME类型

 缓存

Cache::put(‘key‘,‘value‘,$minites);
Cache::add(‘key‘,‘value‘,$minites);   //不存在才缓存
Cache::has(‘key‘)
Cache::get(‘key‘)
Cache::forever(‘key‘,‘value‘);   //永久存储
Cache::get(‘key‘,‘default‘);  //如果存在返回默认值
Cache::forget(‘key‘)    //删除

 

laravel下的cookie、session、缓存和提交信息处理

标签:des   style   blog   io   ar   color   sp   for   文件   

原文地址:http://www.cnblogs.com/xueyuwyz/p/4123667.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!