本文整理汇总了PHP中Cookie::del方法的典型用法代码示例。如果您正苦于以下问题:PHP Cookie::del方法的具体用法?PHP Cookie::del怎么用?PHP Cookie::del使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cookie
的用法示例。
在下文中一共展示了Cookie::del方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: saveorders
public function saveorders($name, $tel, $mail, $order)
{
$sth = $this->db->prepare("INSERT INTO saveorders(name, tel, mail, orders) VALUES (:name, :tel, :mail, :orders) ");
$sth->execute(array(":name" => $name, ":tel" => $tel, ":mail" => $mail, ":orders" => $order));
Cookie::del('basket');
header("Location: " . URL . "basket?order={$order}");
}
示例2: login_out
static function login_out()
{
Session::set('tokey', null);
Session::set('uname', null);
Session::set('uauth', null);
Cookie::del('uname');
Cookie::del('tokey');
}
示例3: destroy
public function destroy()
{
$this->parent->parent->debug($this::name_space . ': Destroying session...');
$token = Cookie::get('ltkn');
$update_query = $this->mySQL_w->prepare("DELETE FROM `core_sessions` WHERE `token`=?");
$update_query->bind_param('s', $token);
$update_query->execute();
Cookie::del('ltkn');
}
示例4: logout
/**
* Очистка и выход
*/
public function logout()
{
if (static::is_login()) {
Cookie::del('zzz', '/', null, false, true);
Session::destroy();
$this->is_login = false;
$this->user_data = array();
}
}