How do I override the not found page in CodeIgniter?

前端 未结 3 1252
余生分开走
余生分开走 2021-01-26 18:29

I have a CodeIgniter application that\'s generally working how I\'d like it to, but occasionally a user will go to a page that does not exist and is greeted with an unfriendly e

相关标签:
3条回答
  • 2021-01-26 19:05

    You should test for error return values and catch exceptions. This is a general programming concept - not something specific to Conigniter or PHP.

    Testing for error return values:

    if (!sort($array))
    {
        echo "Could not sort $array.";
    }
    

    Catching exceptions:

    try
    {
        $someFunction($data);
    }
    catch (Exception $e)
    {
        echo "Something went wrong";
    }
    

    Of course write useful error messages with pertinent info that helps the user find their problem, and/or helps you fix your bug. You could get advanced and use something like set_error_handler(): http://php.net/manual/en/function.set-error-handler.php

    I found this interesting article: http://www.derekallard.com/blog/post/error-handling-in-codeigniter/

    I'm not sure it reflects the current CI release as it's from 2007.

    0 讨论(0)
  • 2021-01-26 19:14

    Try these codeigniter functions

    show_404('Your error message');
    show_error('Your error message');
    

    you can find more detail at http://codeigniter.com/user_guide/general/errors.html

    example:

    if ($some_error) //condition
    {
     show_error('Error');
    }
    
    0 讨论(0)
  • 2021-01-26 19:19

    If you're looking at handling errors with your own custom page, you can modify the error templates found in application/errors. If you have a reason to based on your own code, you can manually send the user to one of these pages using show_404 or show_error - check out the Error Handling page in the official docs.

    0 讨论(0)
提交回复
热议问题