當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Session::destroy方法代碼示例

本文整理匯總了PHP中helpers\Session::destroy方法的典型用法代碼示例。如果您正苦於以下問題:PHP Session::destroy方法的具體用法?PHP Session::destroy怎麽用?PHP Session::destroy使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在helpers\Session的用法示例。


在下文中一共展示了Session::destroy方法的14個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: logout

 /**
  * Logs the user out
  *
  */
 public function logout()
 {
     Session::destroy();
     /* Clear all sessions set for this project */
     Url::redirect("http://something.sellerstam.mebokund.com/", true);
     /* Goes back to the home page */
 }
開發者ID:Trettman,項目名稱:Something,代碼行數:11,代碼來源:Auth.php

示例2: action_logout

 public function action_logout()
 {
     if (!$this->userRequired()) {
         return;
     }
     Session::destroy();
     $this->redirect(FRONT_CONTROLLER . '/user/login');
 }
開發者ID:Argeath,項目名稱:arg-framework,代碼行數:8,代碼來源:Controller_User.php

示例3: loguit

 public function loguit()
 {
     //Unset de sessions.
     \Helpers\Session::destroy('username');
     \Helpers\Session::destroy('id');
     \Helpers\Session::destroy('rechten');
     //Stuurt je door naar de homepagina.
     \Helpers\Url::redirect('home');
 }
開發者ID:Aukevanoost,項目名稱:zeilschooldewaai,代碼行數:9,代碼來源:Login.php

示例4: logout

 public function logout()
 {
     Session::destroy('loggedin');
     Session::destroy('id');
     Session::destroy('login');
     setcookie("remember", "", time() - 10000, DIR);
     Session::set('message', 'Vous avez bien été déconnecté');
     Session::set('message_type', 'alert-success');
     Url::redirect();
 }
開發者ID:PierreClouet,項目名稱:picasa,代碼行數:10,代碼來源:User.php

示例5: post

 public function post($slug)
 {
     //Checkt of de aangemaakt url matched aan één van de url's in de database.
     $check = $this->registreren->validateUser($slug);
     if (count($check) == 1) {
         //Als er een gebruiker gelinkt is word het account geactiveerd.
         \Helpers\Session::destroy('checkmail');
         $this->registreren->givePrivilage($check[0]->klant_id);
     }
     //Linkt je naar de succes pagina.
     \Helpers\Url::redirect('activatie');
 }
開發者ID:chrisbruijnes,項目名稱:zeilschooldewaai,代碼行數:12,代碼來源:Registreren.php

示例6: handleSearch

 public function handleSearch($post)
 {
     if (isset($post['search_submit'])) {
         $search = $this->runSearch($post['search_username']);
         if (is_array($search)) {
             Session::set('search_results', $search);
         } else {
             Session::destroy('search_results');
             Session::set('search_message', $search);
             if ($search == 0) {
                 Session::set('search_message', 'no results');
             }
         }
     }
     //return $data;
 }
開發者ID:umihnea,項目名稱:e-learning.inkdrop,代碼行數:16,代碼來源:MemberSearch.php

示例7: logout

 public function logout()
 {
     Session::destroy();
     Url::redirect('admin/login');
 }
開發者ID:T-PHP,項目名稱:Simple-MVC-Blog,代碼行數:5,代碼來源:Auth.php

示例8: logout

 public function logout()
 {
     Session::destroy();
     Url::redirect();
 }
開發者ID:pacozaa,項目名稱:simple-mvc-framework-inventory,代碼行數:5,代碼來源:auth.php

示例9: logout

 public function logout()
 {
     Session::destroy('user');
     Session::destroy('user_id');
     Url::redirect('account/login');
 }
開發者ID:Oluwafemikorede,項目名稱:gbedu,代碼行數:6,代碼來源:Account.php

示例10: deconnexion

 public function deconnexion()
 {
     Session::destroy('', false);
     Url::redirect();
 }
開發者ID:jordandevolder,項目名稱:Algogoal,代碼行數:5,代碼來源:Connexion.php

示例11: logout

 /**
  * Handle account logout, session destory
  */
 public function logout()
 {
     \Helpers\Session::destroy();
     \Helpers\Url::redirect('Home');
 }
開發者ID:egnsh93,項目名稱:cst8257-Project,代碼行數:8,代碼來源:Account.php

示例12: logout

 public function logout()
 {
     Session::destroy();
     setcookie('rememberme', false, time() - 3600 * 3650);
     //'/', COOKIE_DOMAIN);
     Url::previous();
 }
開發者ID:umihnea,項目名稱:e-learning.inkdrop,代碼行數:7,代碼來源:Landing.php

示例13: logout

 public function logout()
 {
     if (isset($_SESSION['rf_user']) && isset($_SESSION['rf_user_id'])) {
         if (isset($_COOKIE['rf_user_cookie']) && isset($_COOKIE['rf_user_id_cookie'])) {
             setcookie("rf_user_cookie", "", time() - 3600, "/", "", false, true);
             setcookie("rf_user_id_cookie", "", time() - 3600, "/", "", false, true);
             setcookie("rf_user_pass_cookie", "", time() - 3600, "/", "", false, true);
         }
         \Helpers\Session::destroy('user');
         \Helpers\Session::destroy('user_id');
         \Helpers\Url::redirect('');
     } else {
         \Helpers\Url::redirect('');
     }
 }
開發者ID:Nattpyre,項目名稱:rocketfiles,代碼行數:15,代碼來源:user.php

示例14:

					'warningNumber': 40
				};
				// $('.textcounter').textareaCount(options);

				var options2 = {
						'maxCharacterSize': 160,
						'originalStyle': 'originalTextareaInfo',
						'warningStyle' : 'warningTextareaInfo',
						'warningNumber': 40,
						'displayFormat' : '#input/#max | #words words'
				};
				$('.textcounter').textareaCount(options2);

				var options3 = {
						'maxCharacterSize': 200,
						'originalStyle': 'originalTextareaInfo',
						'warningStyle' : 'warningTextareaInfo',
						'warningNumber': 40,
						'displayFormat' : '#left Characters Left / #max'
				};
			});
		</script>
			<?php 
Assets::js(array(Url::templatePath() . 'js/custom.js'));
?>
</body>
</html>
<?php 
Session::destroy('success');
Session::destroy('error');
開發者ID:Oluwafemikorede,項目名稱:gbedu,代碼行數:30,代碼來源:footer.php


注:本文中的helpers\Session::destroy方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。