CodeIgniter Forums
oops in codeigniter - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Choosing CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=8)
+--- Thread: oops in codeigniter (/showthread.php?tid=68744)



oops in codeigniter - dayakar - 08-18-2017

could you share oops in codeigniter?


RE: oops in codeigniter - Kaosweaver - 08-21-2017

Object Orientated programming or mistakes?


RE: oops in codeigniter - ciadvantage - 08-23-2017

Read some example class in the core CI and find them. OR why dont you build some libraries class ? it is everywhere.
Here let's do it:
Code:
/*
**Foo.php
*/
class Foo{
function tellFoo(){
   return 'Im a foo';
}
}
//Ok put it in library folder
then you can call it in any controllers or models so on such as

class Hello extends CI_Controller{
function __construct(){
    $this->load->library('foo');
}
function greet(){
    print $this->foo->tellFoo();//use it with func tellFoo()
}
}