[eluser]solid9[/eluser]
What is the side effect of loading a library or model or helper twice or more?
Example:
Controller A,
Code:
public function __construct()
{
$this->ci->load->library('sample_lib');
}
Controller B,
Code:
public function __construct()
{
$this->ci->load->library('sample_lib');
}
I hope Cronix or InsiteFX or someone that is much more experienced,
to answer this.
Just curious to know the side effect of loading it repeatedly.
Thanks in advanced.