_cipherTool->encrypt($cookie); $time = $this->_expire; } else { $content = 0; $time = time() - 1; } if (PHP_VERSION_ID <= 50200) /* PHP version > 5.2.0 */ //return setcookie($this->_name, $content, $time, $this->_path, $this->_domain, 0); return setcookie($this->_name, $content, $time, $this->_path); else return setcookie($this->_name, $content, $time, $this->_path); } }