5.7.1.5 delete
delete($name)
del($name)
Clear the session data at $name. del($name) is deprecated from 1.3.
$this->Session->delete('Person.eyeColor'); $this->Session->delete('Person.eyeColor');
Our session data no longer has the value 'Green', or the index eyeColor set. However, Person is still in the Session. To delete the entire Person information from the session use.
$this->Session->delete('Person'); $this->Session->delete('Person');


























