search
HomeBackend DevelopmentPHP TutorialAnalyze PHP5 exception handling with examples_PHP tutorial
Analyze PHP5 exception handling with examples_PHP tutorialJul 21, 2016 pm 02:52 PM
phpphp5deal withCase Analysisabnormalmoduleuseoflanguage

<?php
/**
* ■Exception handling in PHP5
*
* PHP 5 adds an exception handling module similar to other languages. Exceptions generated in PHP code can be thrown
* statement throws and is caught by a catch statement. Code that requires exception handling must be placed within the try code block, ending with
* Catch possible exceptions. Every try must have at least one corresponding catch. Use multiple catches
* Can catch exceptions generated by different classes. When the try code block no longer throws an exception or cannot find a matching catch
* When an exception is thrown, the PHP code will continue executing after jumping to the last catch. Of course, PHP
* Allow exceptions to be thrown again within catch blocks.
* When an exception is thrown, the subsequent code will not continue
* is executed, and PHP will try to find the first matching catch. If an exception is not caught and
* If there is no need to use set_exception_handler() for corresponding processing, then PHP will generate a
* A serious error, and the prompt message Uncaught Exception... (uncaught exception) is output.
*/
?>
<?php
/**
* Exception.php
*
* ■㈡The properties and methods of the built-in exception class in PHP5
* The following code is only to illustrate the structure of the built-in exception handling class. It is not a usable code with practical significance.
*/

class Exception{
protected $message = 'Unknown exception'; // Exception message
protected $code = 0; // User-defined exception code
protected $file; // The file name where the exception occurred
protected $line; // Code line number where the exception occurred

function __construct($message = null, $code = 0);
final function getMessage(); // Return exception message
final function getCode(); // Return exception code (code name)
final function getFile(); // Return the file name where the exception occurred
final function getLine(); // Returns the code line number where the exception occurred
final function getTrace(); // backtrace() array
final function getTraceAsString(); // The getTrace() information that has been formatted into a string

Overloadable methods
function __toString(); // Outputable string
}

?>

<?php
/**
* syntax .php
*/

//■㈢Grammar structure and analysis

//PHP has two formats for throwing exceptions, as follows

//【1】try...catch...
try {
//Perform abnormal operations, such as database errors and file errors
}catch (Exception $e){
//Print error message
}

//【2】throw
$message='I must be run in the try{} block. If an exception occurs, I ($message) will be returned (passed) to the instance of the exception object in catch(), such as $e above';
$code=123; //Error code number, you can use $e->getCode(); in the catch block to return my value 123, so that I can customize the error code number

throw new Exception($message,$code);

//Note when learning JAVA, PHP exception handling does not have throws

?>

<?php
/**
* Example.php
*/
//■㈣Two examples to master PHP exception handling


//Example [1] use try...catch
/* PDO connects to the mysql database. If you have not seen PDO, first look at the constructor of PDO, or skip Example 1 and look at Example 2 */
$dsn = 'mysql:host=localhost;dbname=testdb';
$user = 'dbuser';
$password = 'dbpass';

try {
$dbh = new PDO($dsn, $user, $password); //Creating a database connection object is prone to exceptions
echo 'If there is an exception above, I will not be displayed';
} catch (PDOException $e) {
echo 'Connection failed: ' . $e->__toString();
}
?>

<?php
//Example[2] try..cathc and throw are used together
try {
$error = 'I threw an exception message and jumped out of the try block';
if(is_dir('./tests')){
echo 'do sth.';
}else{
throw new Exception($error,12345);
}
echo 'If there is an exception above, it won't be my turn! ~<br />',"n";
} catch (Exception $e) {
echo 'Catch exception: ', $e->getMessage(),$e->getCode(), "n<br />"; //Display $error and 123456
}
echo 'Continue execution';
?>

<?php
//PHP's processing is much easier to learn than JAVA, because JAVA has too many exception classes, throws, etc.
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/371514.htmlTechArticle<?php /** * ■㈠Exception handling in PHP5* * PHP 5 adds exceptions similar to other languages processing module. Exceptions generated in PHP code can be thrown by the throw * statement and caught by the catch statement...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php5和php8有什么区别php5和php8有什么区别Sep 25, 2023 pm 01:34 PM

php5和php8的区别在性能、语言结构、类型系统、错误处理、异步编程、标准库函数和安全性等方面。详细介绍:1、性能提升,PHP8相对于PHP5来说在性能方面有了巨大的提升,PHP8引入了JIT编译器,可以对一些高频执行的代码进行编译和优化,从而提高运行速度;2、语言结构改进,PHP8引入了一些新的语言结构和功能,PHP8支持命名参数,允许开发者通过参数名而不是参数顺序等等。

Java中的NoSuchFieldError异常常见原因是什么?Java中的NoSuchFieldError异常常见原因是什么?Jun 24, 2023 pm 09:00 PM

Java中的NoSuchFieldError异常常见原因是什么?Java是一种跨平台的面向对象编程语言,多用于开发企业级应用程序和移动应用程序等。在Java程序开发中,NullPointerException、IndexOutOfBoundsException、ClassCastException等异常经常会出现,而NoSuchFieldError异常也是比

Java中的StackOverflowError异常常见原因是什么?Java中的StackOverflowError异常常见原因是什么?Jun 25, 2023 am 08:19 AM

Java中的StackOverflowError异常常见原因是什么?在使用Java编程时,如果程序出现了StackOverflowError异常,那么程序将会崩溃,并且输出错误信息。那么什么是StackOverflowError异常,这种异常一般发生在哪些情况下呢?今天我们就来了解一下关于Java中StackOverflowError异常的常见原因。一、什么

Java中的ClassCastException异常常见原因是什么?Java中的ClassCastException异常常见原因是什么?Jun 25, 2023 am 10:37 AM

Java中的ClassCastException异常常见原因是什么?Java语言中,ClassCastException异常是一种运行时异常,它发生在Java程序在运行时试图将一个对象强制转换为不兼容的数据类型时。在这种情况下,编译器将无法提前检查出类型不兼容的错误,而是在程序运行时抛出异常。在Java中,ClassCastException异常通常发生在以

php5如何改80端口php5如何改80端口Jul 24, 2023 pm 04:57 PM

php5改80端口的方法:1、编辑Apache服务器的配置文件中的端口号;2、辑PHP的配置文件以确保PHP在新端口上工作;3、重启Apache服务器,PHP应用程序将开始在新的端口上运行。

Java中的FileNotFoundException异常常见原因是什么?Java中的FileNotFoundException异常常见原因是什么?Jun 25, 2023 am 09:37 AM

Java中的FileNotFoundException异常常见原因是什么?在Java开发过程中,异常是难免出现的。其中FileNotFoundException是一种十分常见的异常,可能会给开发者带来不必要的麻烦和时间的浪费。本文将探讨FileNotFoundException异常的常见原因,以及如何避免和解决它。一、FileNotFoundExceptio

推荐哪款鼠标连点器软件使用效果较好?推荐哪款鼠标连点器软件使用效果较好?Jan 02, 2024 pm 07:54 PM

用什么鼠标连点器比较好对于连点器,我推荐使用AutoClicker。它是一款简单易用的鼠标连点软件,可以帮助你自动点击鼠标。原因是AutoClicker具有以下优点1.界面简洁直观,操作简单,适合初学者使用。2.支持自定义点击间隔时间,可以根据需要调整点击速度。3.可以设置点击次数或持续点击,满足不同的需求。4.免费软件,无需付费购买。如果你想使用连点器,可以尝试一下AutoClicker。生死狙击2罗技鼠标宏怎么设置以下是在生死狙击2中设置罗技鼠标宏的步骤:1.首先,确保你已经购买并安装了罗技

Java中的SecurityException异常常见原因是什么?Java中的SecurityException异常常见原因是什么?Jun 25, 2023 am 09:04 AM

Java中的SecurityException异常是一种常见的异常类型,它通常在Java应用程序中出现,可能会给开发人员带来不少麻烦。本文将从几个方面介绍SecurityException异常的常见原因,帮助开发人员更好地理解、避免和解决这种异常。安全管理器限制Java中的SecurityManager是一组权限检查机制,用于保护Java应用程序安全。Sec

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools