I'm try to load and call some methods dicamicaly libraries in Codeigniter like
$plugins = array('paypal', 'captcha');
foreach($plugins as $plugin){
$this->load->library($plugin);
//The problem appear when I'm try to call some method...
echo $this->[$plugin]->hello_world();
}