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

laravel常用的功能函数表

时间:2014-11-27 10:37:16      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   for   on   div   

Mail

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

Hash

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

 Pagination

Pagination::slider
Pagination::simple
Paginator::make

Auth

Auth::attempt
Auth::check
Auth::user()->email;
Auth::loginUsingId(1);
Auth::validate
Auth::once
Auth::logout

Event

Event::listen
Event::fire
Event::queue
Event::flusher

App

App::bind
App::make(‘foo‘);
App::singleton
App::instance
App::resolving
App::register

Cache

Cache::decrement  //对cache中的参数做-1操作
Cache::put
Cache::has
Cache::add
Cache::get
Cache::forever
Cache::remember
Cache::rememberForever
Cache::forget
Cache::increment  //+1操作

 

laravel常用的功能函数表

标签:style   blog   io   ar   color   sp   for   on   div   

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

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