Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Explain how you can extend the class in Codeigniter?
Home
CodeIgniter
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 {
}
...