Laravrl

laravel随机查询几条数据

laravel随机查询几条数据DB::table('user')     ->orderBy(DB::raw('RAND()'))  ...

laravel5 Cache

laravel5 Cache基本操作Cache::put('key', 'value', $minutes); Cache::add('key', &#...

laravel HTML

laravel html标签用法HTML::macro('name', function(){}); // 将 HTML 字符串转为实体 HTML::ent...

laravel5 Cookie

laravel5 CookieCookie::get('key'); Cookie::get('key', 'default'); // 创建一个永久有...

laravel Log

laravel LogLog::info('info'); Log::info('info',array('context'=>'additional info...

laravel Redirect

laravel Redirectreturn Redirect::to('foo/bar'); return Redirect::to('foo/bar')->with('...

Laravel Request

Laravel Request// url: http://xx.com/aa/bb  Request::url(); // 路径: /aa/bb  Request::p...

laravel5 Container

laravel5 Container介绍App::bind('foo', function($app){ return new Foo; }); App::make(&...

使用STS临时访问凭证访问OSS上传图片

您可以通过STS服务给其他用户颁发一个临时访问凭证。该用户可使用临时访问凭证在规定时间内访问您的OSS资源。临时访问凭证无需透...