首页 > 代码库 > laravel常用的功能函数表

laravel常用的功能函数表

Mail

Mail::sendMail::queue   //排列一个新邮件发送Mail::later    //在n秒后在发送队列中插入一条新邮件Mail::queueon   //在给定的队列中排列一个新邮件Mail::pretend()  //让mail对象假装发送邮件Mail::lateron   //在n秒后在给定的队列中插入一条新邮件

Hash

Hash::makeHash::checkHash::needsRehash   //检测串是否用给定的option  hash过

 Pagination

Pagination::sliderPagination::simplePaginator::make

Auth

Auth::attemptAuth::checkAuth::user()->email;Auth::loginUsingId(1);Auth::validateAuth::onceAuth::logout

Event

Event::listenEvent::fireEvent::queueEvent::flusher

App

App::bindApp::make(‘foo‘);App::singletonApp::instance
App::resolving
App::register

Cache

Cache::decrement  //对cache中的参数做-1操作Cache::putCache::hasCache::addCache::getCache::foreverCache::rememberCache::rememberForeverCache::forgetCache::increment  //+1操作

 

laravel常用的功能函数表