0
我有3個領域:Zend的第二節常見的cookie域
example.com
m.example.com
dev.example.com
會議應example.com
和m.example.com
是共同的。我是如何做到的。 bootstrap.php中:
protected function _initSession()
{
Zend_Session::setOptions(array(
'cookie_domain' => '.example.com',
'name' => 'ExampleSession'
));
Zend_Session::start();
}
但是這屆作品dev.example.com
了。我如何避免dev.example.com
的常見會話?謝謝!