@weierophinney @Ocramius
As said in the title, checking if specific offset exists when it is set with NULL value always return FALSE.
// Zend session container
$session = Application::getInstance()->getSession();
$session['key'] = NULL;
if($session->offsetExists('key')) {
// do something
}
The problem is that current implementation rely on PHP isset() language construct which return FALSE for keys with NULL value. Shouldn't it be preferable to use the PHP array_key_exists() function? What we want there is knonwing if a specific offset exists, whatever it value, right? Else, is there any reliable way to check if a particular key was set, whatever it value and without first having to get an array copy?
Even worse is that trying to unset an offset with NULL value will lead to a NO OP because we return early from Zend\Session::AbstractContainer::offsetUnset() if the offset isn't set in regard of the Zend\Session::AbstractContainer::offsetExists() current implementation:
// Zend session container
$session = Application::getInstance()->getSession();
$session['key'] = NULL;
$session->offsetUnset('key'); NO OP... Key will still be in storage...
Thank you.
@weierophinney @Ocramius
As said in the title, checking if specific offset exists when it is set with
NULLvalue always returnFALSE.The problem is that current implementation rely on PHP
isset()language construct which returnFALSEfor keys withNULLvalue. Shouldn't it be preferable to use the PHParray_key_exists()function? What we want there is knonwing if a specific offset exists, whatever it value, right? Else, is there any reliable way to check if a particular key was set, whatever it value and without first having to get an array copy?Even worse is that trying to unset an offset with
NULLvalue will lead to a NO OP because we return early fromZend\Session::AbstractContainer::offsetUnset()if the offset isn't set in regard of theZend\Session::AbstractContainer::offsetExists()current implementation:Thank you.