$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‘) //删除
时间: 2024-11-11 15:46:31