How can I fix this?
function _data($values){
foreach ($values as $key => $value){
    $this->_data($key)  = $value;
}
returns error message Fatal error:
Can't use method return value in write context
How can I fix this?
function _data($values){
foreach ($values as $key => $value){
    $this->_data($key)  = $value;
}
returns error message Fatal error:
Can't use method return value in write context
