コード例 #1
0
ファイル: Session.php プロジェクト: burbuja/pluf
 function getData($key = null, $default = '')
 {
     if (is_null($key)) {
         return parent::getData();
     }
     if (isset($this->data[$key])) {
         return $this->data[$key];
     } else {
         return $default;
     }
 }