本文整理汇总了PHP中cookie::queue方法的典型用法代码示例。如果您正苦于以下问题:PHP cookie::queue方法的具体用法?PHP cookie::queue怎么用?PHP cookie::queue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cookie
的用法示例。
在下文中一共展示了cookie::queue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: logout
public function logout()
{
cookie::queue('uid', null, -1);
cookie::queue('name', null, -1);
cookie::queue('phone', null, -1);
return redirect('/');
}
示例2: signDo
/**
* 进行报名
*/
public function signDo()
{
$rules = array('active_type' => 'required');
$postData = Input::all();
$validator = Validator::make($postData, $rules);
if ($validator->fails()) {
return Redirect::to('sign/' . Input::get('activeId'))->withErrors($validator);
}
$uid = cookie::get('uid');
if ($uid) {
//报名
foreach ($postData['active_type'] as $type) {
DB::table('active_user')->insert(['uid' => $uid, 'active_id' => Input::get('activeId'), 'active_type' => $type]);
}
} else {
//注册+报名
$phone = Input::get('phone');
$name = Input::get('name');
$rules = array('phone' => 'required', 'name' => 'required');
$validator = Validator::make(Input::all(), $rules);
if ($validator->fails()) {
return Redirect::to('sign/' . Input::get('activeId'))->withErrors($validator);
}
$pass = '111111';
//user表写入数据,注册
DB::table('user')->insert(['name' => $name, 'phone' => $phone, 'password' => md5($pass)]);
//设置登陆
$lastUid = DB::getPdo()->lastInsertId();
cookie::queue('uid', $lastUid, 86400);
cookie::queue('name', $name, 86400);
cookie::queue('phone', $phone, 86400);
//报名
foreach ($postData['active_type'] as $type) {
DB::table('active_user')->insert(['uid' => $lastUid, 'active_id' => Input::get('activeId'), 'active_type' => $type]);
}
}
return redirect('/');
}