cookie.session.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. # ***** BEGIN LICENSE BLOCK *****
  3. # This file is part of DotClear.
  4. # Copyright (c) 2004 Olivier Meunier and contributors. All rights
  5. # reserved.
  6. #
  7. # DotClear is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # DotClear is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with DotClear; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. #
  21. # ***** END LICENSE BLOCK *****
  22. class cookieSession
  23. {
  24. var $name;
  25. var $values;
  26. function cookieSession($name)
  27. {
  28. $this->name = $name;
  29. if (isset($_COOKIE[$name])) {
  30. $this->values = unserialize($_COOKIE[$name]);
  31. } else {
  32. $this->values = array();
  33. }
  34. $this->_setCookie();
  35. }
  36. function reg($name,$value)
  37. {
  38. $this->values[$name] = $value;
  39. $this->_setCookie();
  40. }
  41. function unreg($name)
  42. {
  43. unset($this->values[$name]);
  44. $this->_setCookie();
  45. }
  46. function f($name)
  47. {
  48. if (!empty($this->values[$name])) {
  49. return $this->values[$name];
  50. }
  51. return null;
  52. }
  53. function destroy()
  54. {
  55. setcookie($this->name,'',time() - 3600);
  56. }
  57. function _setCookie()
  58. {
  59. setcookie($this->name,serialize($this->values));
  60. }
  61. }
  62. ?>