コード例 #1
0
ファイル: Session.php プロジェクト: JasonWiki/docs
 /**
  * Do not save this session.
  * This is a performance feature only, if using the native
  * session "driver" the save will NOT be aborted.
  *
  * @return  void
  */
 public function abort_save()
 {
     Session::$should_save = FALSE;
 }
コード例 #2
0
ファイル: Session.php プロジェクト: HelixiR/gallery3
        /**
         * Do not save this session.
         *
         * @return  void
         */
        public function abort_save() {
                Session::$should_save = false;

        }