Only variable references should be returned by reference – Codeigniter

Edit filename: core/Common.php, line number: 257 Before After Update Added by NikiC In PHP assignment expressions always return the assigned value. So $_config[0] =& $config returns $config – but not the variable itself, but a copy of its value. And returning a reference to a temporary value wouldn’t be particularly useful (changing it wouldn’t do … Read more