search
Homephp教程php手册PHP5中的异常处理详解(1)
PHP5中的异常处理详解(1)Jun 13, 2016 am 11:02 AM
catchfilepathphpphp5trydeal withabnormalDetectionDetailed explanation

首先是try,catch

﹤?php <br>$path = "D:\\in.txt"; <br>try //检测异常 <br>{ <br>file_open($path); <br>} <br>catch(Exception $e) //捕获异常 <br>{ <br>echo $e-﹥getMessage(); <br>} 
function file_open($path) <br>{ <br>if(!file_exists($path)) //如果文件无法找到,抛出异常对象 <br>{ <br>throw new Exception("文件无法找到", 1); <br>} 
if(!fopen($path, "r")) //如果文件无法打开,抛出异常对象 <br>{ <br>throw new Exception("文件无法打开", 2); <br>} <br>} <br>?﹥ 

注意用$e->getMessage()输出异常信息.

输出异常完整信息

﹤?php <br>$path = "D:\\in.txt"; 
try <br>{ <br>file_open($path); //尝试打开文件 <br>} <br>catch(Exception $e) <br>{ <br>echo "异常信息:".$e-﹥getMessage()."\n"; //返回用户自定义的异常信息 <br>echo "异常代码:".$e-﹥getCode()."\n"; //返回用户自定义的异常代码 <br>echo "文件名:".$e-﹥getFile()."\n"; //返回发生异常的PHP程序文件名 <br>echo "异常代码所在行".$e-﹥getLine()."\n"; //返回发生异常的代码所在行的行号 <br>echo "传递路线:"; <br>print_r($e-﹥getTrace()); //以数组形式返回跟踪异常每一步传递的路线 <br>echo $e-﹥getTraceAsString(); //返回格式化成字符串的getTrace函数信息 <br>} 
function file_open($path) <br>{ <br>if(!file_exists($path)) //如果文件不存在,则抛出错误 <br>{ <br>throw new Exception("文件无法找到", 1); <br>} 
if(!fopen($path, "r")) <br>{ <br>throw new Exception("文件无法打开", 2); <br>} <br>} <br>?﹥  
1
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中的IOException异常常见原因是什么?Java中的IOException异常常见原因是什么?Jun 25, 2023 am 11:22 AM

在Java编程中,IOException异常是一个经常出现的异常类型。它在处理文件和网络连接等I/O操作时经常出现。本文将探讨Java中IOException异常的常见原因和解决方法。文件不存在或无法读取文件最常见的IOException异常是当试图打开一个不存在的文件或没有权限读取文件时抛出的异常。当我们使用FileInputStream或FileRead

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异常通常发生在以

Java中的UnsupportedClassVersionError异常的解决方法Java中的UnsupportedClassVersionError异常的解决方法Jun 25, 2023 pm 02:03 PM

Java是一种高级编程语言,广泛使用于企业级应用程序的开发和部署。但是,在Java开发和部署过程中,可能会遇到一些异常情况,其中之一就是UnsupportedClassVersionError异常。本文将详细解释UnsupportedClassVersionError异常的原因,并介绍如何解决这个问题。一、UnsupportedClassVersionErr

Java中的SecurityException异常在什么场景下出现?Java中的SecurityException异常在什么场景下出现?Jun 25, 2023 pm 02:36 PM

Java中的SecurityException异常是一种常见的异常类型,它通常出现在Java应用程序安全方面的处理中。这个异常通常指的是安全管理器出现问题,或者应用程序试图访问受保护的资源而未被授权的情况。本文将探讨Java中的SecurityException异常在哪些场景下会出现,以及如何在应用程序中避免这种异常的发生。首先,Java中的Security

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

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

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

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version