Controllers in CodeIgniter can extend the core class CI_Controller or ________ for more specialized functionality.
- Base_Controller
- Extended_Controller
- MY_Controller
- Special_Controller
In CodeIgniter, controllers can extend the core class CI_Controller for standard functionality. For more specialized functionality and to create a base controller with custom methods, you can create a new file named MY_Controller.php and extend CI_Controller.
Loading...
Related Quiz
- Which HTTP method is commonly used for sending data during the OAuth authentication process?
- To view benchmark results in CodeIgniter, use the ______ method of the Output class.
- A developer needs to optimize a query that fetches large datasets by applying filters. The optimal approach involves using ________ in CodeIgniter's Query Builder.
- In CodeIgniter, which library is commonly used for building RESTful APIs?
- The method ________ is used to update a resource in a RESTful API built with CodeIgniter.