How to handle exceptions in php5 programming-PHP Tutorial

Source: Internet
Author: User
Detailed methods for exception handling in php5 programming. 1 First, try, catch? Php $ pathD: \ in.txt; try to detect exceptions {file_open ($ path);} catch (Exception $ e) catch exceptions {echo $ e-getMessage ();} functionfile_open ($ path) {if (! File _ 1 First is try, catch

$ Path = "D :\\\ in.txt ";
Try // detect exceptions
{
File_open ($ path );
}
Catch (Exception $ e) // catch an Exception
{
Echo $ e-> getMessage ();
}

Function file_open ($ path)
{
If (! File_exists ($ path) // if the file cannot be found, an exception object is thrown.
{
Throw new Exception ("the file cannot be found", 1 );
}

If (! Fopen ($ path, "r") // if the file cannot be opened, an exception is thrown.
{
Throw new Exception ("file cannot be opened", 2 );
}
}
?>
Use $ e-> getMessage () to output exception information.

2. output complete exception information

$ Path = "D :\\\ in.txt ";

Try
{
File_open ($ path); // try to open the file
}
Catch (Exception $ e)
{
Echo "exception information:". $ e-> getMessage (). "\ n"; // return user-defined exception information
Echo "exception code:". $ e-> getCode (). "\ n"; // return the custom exception code
Echo "File name:". $ e-> getFile (). "\ n"; // return the PHP program file name with an exception
Echo "row where the exception code is located". $ e-> getLine (). "\ n"; // return the row number of the row where the exception code is located.
Echo "route :";
Print_r ($ e-> getTrace (); // returns the path of each trace exception in the form of an array
Echo $ e-> getTraceAsString (); // returns the getTrace function information formatted as a string.
}

Function file_open ($ path)
{
If (! File_exists ($ path) // if the file does not exist, an error is thrown.
{
Throw new Exception ("the file cannot be found", 1 );
}

If (! Fopen ($ path, "r "))
{
Throw new Exception ("file cannot be opened", 2 );
}
}
?>




An extension exception occurs, that is, a custom exception.

Class FileExistsException extends Exception {} // class used to handle non-existent file exceptions
Class FileOpenException extends Exception {}// class used to handle unreadable file exceptions

$ Path = "D :\\\ in.txt ";

Try
{
File_open ($ path );
}
Catch (FileExistsException $ e) // if a FileExistsException exception occurs, the user is prompted to confirm the file location
{
Echo "An exception occurred during program running:". $ e-> getMessage (). "\ n ";
Echo "please confirm the file location. ";
}
Catch (FileOpenException $ e) // if a FileOpenException occurs, the user is prompted to confirm the readability of the file.
{
Echo "An exception occurred during program running:". $ e-> getMessage (). "\ n ";
Echo "make sure the file is readable. ";
}
Catch (Exception $ e)
{
Echo "[unknown exception]";
Echo "exception information:". $ e-> getMessage (). "\ n"; // return user-defined exception information
Echo "exception code:". $ e-> getCode (). "\ n"; // return the custom exception code
Echo "File name:". $ e-> getFile (). "\ n"; // return the PHP program file name with an exception
Echo "row where the exception code is located". $ e-> getLine (). "\ n"; // return the row number of the row where the exception code is located.
Echo "route :";
Print_r ($ e-> getTrace (); // returns the path of each trace exception in the form of an array
Echo $ e-> getTraceAsString (); // returns the getTrace function information formatted as a string.
}

Function file_open ($ path)
{
If (! File_exists ($ path ))
{
Throw new FileExistsException ("file cannot be found", 1); // throw a FileExistsException exception object
}

If (! Fopen ($ path, "r "))
{
Throw new FileOpenException ("file cannot be opened", 2); // throw a FileOpenException exception object

}
}
?>

4. re-throw an exception to the upper layer

Class FileExistsException extends Exception {} // class used to handle non-existent file exceptions
Class FileOpenException extends Exception {}// class used to handle unreadable file exceptions

$ Path = "D :\\\ in.txt ";

Try
{
File_open ($ path );
}
Catch (FileExistsException $ e) // if a FileExistsException exception occurs, the user is prompted to confirm the file location
{
Echo "An exception occurred during program running:". $ e-> getMessage (). "\ n ";
Echo "please confirm the file location. ";
}
Catch (FileOpenException $ e) // if a FileOpenException occurs, the user is prompted to confirm the readability of the file.
{
Echo "An exception occurred during program running:". $ e-> getMessage (). "\ n ";
Echo "make sure the file is readable. ";
}
Catch (Exception $ e)
{
Echo "[unknown exception]";
Echo "exception information:". $ e-> getMessage (). "\ n"; // return user-defined exception information
Echo "exception code:". $ e-> getCode (). "\ n"; // return the custom exception code
Echo "File name:". $ e-> getFile (). "\ n"; // return the PHP program file name with an exception
Echo "row where the exception code is located". $ e-> getLine (). "\ n"; // return the row number of the row where the exception code is located.
Echo "route :";
Print_r ($ e-> getTrace (); // returns the path of each trace exception in the form of an array
Echo $ e-> getTraceAsString (); // returns the getTrace function information formatted as a string.
}

Function file_open ($ path)
{
Try
{
If (! File_exists ($ path ))
{
Throw new FileExistsException ("file cannot be found", 1 );
}

If (! Fopen ($ path, "r "))
{
Throw new FileOpenException ("file cannot be opened", 2 );
}
}
Catch (Exception $ e) // catch an Exception
{
Echo "the file_open function encountered an exception while running ";
Throw $ e; // throwing an exception
}
}
?>

Why? Php $ path = "D :\\\ in.txt"; try // detect exceptions {file_open ($ path);} catch (Exception $ e) // capture exceptions {echo $ e-getMessage ();} functionfile_open ($ path) {if (! File _...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.