I would like to understand if there's any performance diference when sending codeigniter superobject as a parameters instead of using and assigning get_instante() to a var ?
For example,
HELPERS:
function callMe($CI)
{
}
CONTROLLER:
callMe($this);
Instead of
HELPERS:
function callMe()
{
$CI =& get_instance();
}
When I were typing this question I found get_instance() in Codeigniter: Why assign it to a variable? wish was very usefull, but I think this is a more specific question.