Advertisement
Guest User

Untitled

a guest
May 6th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class Programmatic extends CI_Controller {
  2.  
  3. public function __construct() {
  4. parent::__construct();
  5. echo '__construct'.PHP_EOL;
  6. }
  7.  
  8. public function tester() {
  9. echo 'tester';
  10. }
  11.  
  12. }
  13.  
  14. php /my_path/index.php programmatic tester
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement