0 votes
in CodeIgniter by
edited by

How can you extend a class in CodeIgniter?

🔗Reference: stackoverflow.com

🔗Source: CodeIgniter Interview Questions and Answers

🔗Source: JAVA Interview Questions and Answers

1 Answer

0 votes
by
You have to build a file name application/core/MY_Input.php and declare your class with Class MY_Input extends CI_Input {}to extend the native input class in CodeIgniter.
...