Hi,
I have a class and i have unset() within a function in it which throws Parse error unexpected T_UNSET.
Some code :
class foo
{
function abc()
{
unset($this->err['main']['sub']['TOBEDELETED']);
}
}
Where I want to unset only key TOBEDELETED .
What may cause this?