Login
Remember
Register
Ask a Question
Explain how you can extend the class in Codeigniter?
0
votes
asked
Dec 29, 2020
in
CodeIgniter
by
SakshiSharma
Explain how you can extend the class in Codeigniter?
#code-igniter-class
#extend-class
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 29, 2020
by
SakshiSharma
To extend the native input class in CodeIgniter, you have to build a file named application/core/MY_Input.php and declare your class with
Class MY_Input extends CI_Input {
}
...