In CodeIgniter, the naming convention for custom library files is ________.
- Customlibrary.php
- Library.php
- Library_custom.php
- My_library.php
The naming convention for custom library files in CodeIgniter is to use the format 'My_library.php' where 'My' is a user-defined prefix, and 'library' is the name of the library. This convention helps maintain consistency and avoid naming conflicts.
Loading...
Related Quiz
- Which file in CodeIgniter is used to set up database connection details?
- When a web application crashes due to a database error, the first step in exception handling should be to check the ________.
- In a CodeIgniter application, when a user requests a report, the Model efficiently handles this by using ________ to aggregate data.
- Which HTTP header is essential for mitigating CSRF attacks?
- How do you load a custom library in a CodeIgniter controller?