예제 #1
0
파일: Prefs.php 프로젝트: jelek92/lpStore
 function __construct()
 {
     if (isset($_COOKIE['prefs'])) {
         self::$prefs = array_merge(self::$default, unserialize($_COOKIE['prefs']));
     } else {
         self::$prefs = self::$default;
     }
 }