我想在基于 zend 的应用程序中启用 httponly cookie。为此,我在 application.config.php 中添加了以下行
'cookie_httponly' => true
到现有的 session_config 数组,它看起来像下面
'session_config' => [
// Set the session and cookie expiries to 15 minutes
'cache_expire' => 1800,
'cookie_lifetime' => 1800,
'cookie_httponly' => true
],
但它不起作用。有任何想法吗 ?