PHP Session class similar to CodeIgniter Session Class?

前端 未结 2 1812
天命终不由人
天命终不由人 2021-01-25 06:10

PHP session class similar to CodeIgniter session class? Exists?

I tried to search, but I did not get useful results. I was using CodeIgniter session class, that have sev

2条回答
  •  逝去的感伤
    2021-01-25 06:53

    loot at this link

    http://stevedecoded.com/blog/custom-php-session-class

    Example

     $session = new Session();
    
     $session->__destruct();
    

提交回复
热议问题