标签: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