2017-07-08 71 views
-1

我想在基於zend的應用程序中啓用httponly cookie。爲了做到這一點,我在下面線application.config.php在zend框架中設置cookie_httponly不起作用

'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 
], 

但它不工作。有任何想法嗎 ?

回答