php学习笔记error
不同的错误处理方法:
基本的错误处理:使用die()函数
if(!file_exists("welcome.txt")){
die("FIle not found");
}else{
$file=fopen("welcome.txt","r");
}
或者
$file=fopen("webdictionary.txt","r") or die("Unable to open file!");
die(status):如果status是字符串,则该函数会在推出前输出字符串。
如果status是证书,这个值会被用作退出状态。退出状态的值在0到254之间。退出状态255由php保留,不会被使用。状态0用于成功地终止程序。
创建自定义错误处理器:
该函数必须有能力处理至少两个参数(error level和error message),但是可以接受最多五个参数(可选的:file,line-number以及error context)。
error_function( error_level, error_message,error_file,error_line,error_context)//错误报告级别,错误消息,发送错误的文件名,行号,规定一个数组(包含了当错误发生时在用的每个变量以及它们的值)
2 | E_WARNING | 非致命的 run-time 错误。不暂停脚本执行。 |
8 | E_NOTICE | Run-time 通知。脚本发现可能有错误发生,但也可能在脚本正常运行时发生。 |
256 | E_USER_ERROR | 致命的用户生成的错误。这类似于程序员使用 PHP 函数 trigger_error() 设置的 E_ERROR。 |
512 | E_USER_WARNING | 非致命的用户生成的警告。这类似于程序员使用 PHP 函数 trigger_error() 设置的 E_WARNING。 |
1024 | E_USER_NOTICE | 用户生成的通知。这类似于程序员使用 PHP 函数 trigger_error() 设置的 E_NOTICE。 |
4096 | E_RECOVERABLE_ERROR | 可捕获的致命错误。类似 E_ERROR,但可被用户定义的处理程序捕获。(参见 set_error_handler()) |
8191 | E_ALL | 所有错误和警告,除级别 E_STRICT 以外。 (在 PHP 6.0,E_STRICT 是 E_ALL 的一部分) |
function customError($errno,$errstr){
echo "Error:[$errno] $errstr
";
echo "Ending Script";
die();
}
当上述错误被触发时,它会取得错误级别和错误消息。然后它会输出错误级别和消息,并终止脚本。现在,已经创建了一个错误处理函数,我们需要确定在何时触发该函数。
Set Error Handler:
php的默认错误处理程序是内奸的错误处理程序。可以修改错误处理程序,使其 仅应用到某些错误,这样脚本就可以不同的方式来处理不同的错误。
本例中,我们打算针对 所有错误来使用我们的自定义错误处理程序。
set_error_handle(“customError”);
当处理所有错误时,set_error_handler()仅需要一个参数,可以添加第二个参数来规定错误级别。
触发错误:
当用户的输入无效时触发错误。由 trigger_error()完成。
$test=2;
if($test>1){
trigger_error("Value must be 1 or below");//大于1时触发错误
}
可能的错误类型:
E_USER_ERROR:
E_USER_WARNING:
E_USER_NOTICE:

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
