PHP的Exception

news2025/1/13 2:40:52

# 简单解释
Exception是PHP的内置类,用来处理异常的基类
https://www.php.net/manual/zh/class.exception.php

```php
class Exception implements Throwable {  
    /** The error message */  
    protected $message;  
    /** The error code */  
    protected $code;  
    /** The filename where the error happened  */  
    protected $file;  
    /** The line where the error happened */  
    protected $line;  
 
 
    /**  
     * Clone the exception     * Tries to clone the Exception, which results in Fatal error.     * @link https://php.net/manual/en/exception.clone.php  
     * @return void  
     */    final private function __clone() { }  
 
    /**  
     * Construct the exception. Note: The message is NOT binary safe.     * @link https://php.net/manual/en/exception.construct.php  
     * @param string $message [optional] The Exception message to throw.  
     * @param int $code [optional] The Exception code.  
     * @param null|Throwable $previous [optional] The previous throwable used for the exception chaining.  
     */    #[Pure]  
    public function __construct($message = "", $code = 0, Throwable $previous = null) { }  
 
    /**  
     * Gets the Exception message     * @link https://php.net/manual/en/exception.getmessage.php  
     * @return string the Exception message as a string.  
     */    #[Pure]  
    final public function getMessage() { }  
 
    /**  
     * Gets the Exception code     * @link https://php.net/manual/en/exception.getcode.php  
     * @return mixed|int the exception code as integer in  
     * <b>Exception</b> but possibly as other type in  
     * <b>Exception</b> descendants (for example as  
     * string in <b>PDOException</b>).  
     */    #[Pure]  
    final public function getCode() { }  
 
    /**  
     * Gets the file in which the exception occurred     * @link https://php.net/manual/en/exception.getfile.php  
     * @return string the filename in which the exception was created.  
     */    #[Pure]  
    final public function getFile() { }  
 
    /**  
     * Gets the line in which the exception occurred     * @link https://php.net/manual/en/exception.getline.php  
     * @return int the line number where the exception was created.  
     */    #[Pure]  
    final public function getLine() { }  
 
    /**  
     * Gets the stack trace     * @link https://php.net/manual/en/exception.gettrace.php  
     * @return array the Exception stack trace as an array.  
     */    #[Pure]  
    final public function getTrace() { }  
 
    /**  
     * Returns previous Exception     * @link https://php.net/manual/en/exception.getprevious.php  
     * @return Exception the previous <b>Exception</b> if available  
     * or null otherwise.     */    #[Pure]  
    final public function getPrevious() { }  
 
    /**  
     * Gets the stack trace as a string     * @link https://php.net/manual/en/exception.gettraceasstring.php  
     * @return string the Exception stack trace as a string.  
     */    #[Pure]  
    final public function getTraceAsString() { }  
 
    /**  
     * String representation of the exception     * @link https://php.net/manual/en/exception.tostring.php  
     * @return string the string representation of the exception.  
     */    public function __toString() { }  
 
    public function __wakeup() { }  
}
```

我这里去看看__toString方法
https://www.php.net/manual/zh/exception.tostring.php

看图就好了


 


 

# 直接来命令执行:
```php
<?php  
$a= new Exception(phpinfo());  
echo $a;```

就会输出phpinfo
直接命令执行就很好。
```php
<?php  
$a= new Exception(system('whoami'));  
echo $a;```

```php
<?php  
$a= new Exception(system("dir"));  
echo $a->__toString();
```
还挺万能东西

# CTF题
有挺多的,懒得列了

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/24598.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

MVC升级swagger No operations defined in spec!

不要嘲笑农民工种田怎么不香了&#xff0c;要反思为什么别人种田收入高。 以下是农民工即将转行挖野菜之前的种田心得。 &#xff11;No operations defined in spec! &#xff12;Failed to load API definition. Failed to load API definition. 经过多次试验测试&#xff0…

光盘如何重装系统教程

​如果你想用光盘来重装自己的电脑系统&#xff0c;但是不知道怎么操作的话&#xff0c;下面让我们一起来看一下光盘重装系统的步骤吧。 工具/原料&#xff1a; 系统版本&#xff1a;win7 品牌型号&#xff1a;惠普 光盘重装系统&#xff1a; 1.首先我们需要先打开电脑上的光…

VUE 的生命周期

Vue 实例有一个完整的生命周期&#xff0c;也就是从创建之前→创建完成→挂载之前→挂载完成→更新渲染之前→渲染完成→销毁之前→销毁完成等一系列过程&#xff0c;我们称这是 Vue 的生命周期。通俗说就是 Vue 实例从创建到销毁的过程&#xff0c;就是生命周期。每一个组件或…

22.11.20补卡 javaSE多线程学习笔记

自用 并发编程 多个任务同时执行 并发原理: CPU分时间片交替执行, 宏观并行, 微观串行; 由OS调度 进程: OS中并发的一个任务 线程: 在一个进程中,并发的一个顺序执行流程 每当执行新的进程时, 之前的进程都会暂且暂停, 由于cpu的时间片非常短, 人感觉不出来 线程的三个要素: CP…

RemObjects SDK for Delphi

RemObjects SDK for Delphi RemObjects SDK for Delphi是一个高级远程处理框架&#xff0c;它允许您从局域网内或Internet上的客户端远程访问驻留在服务器上的对象。RemObjects SDK for Delphi将允许您构建客户端和服务器应用程序&#xff0c;使用高度优化的Smart Services实现…

Seata AT模式下的源码解析(三)

7. 网络请求 7.1 TransactionManager 事务管理器&#xff0c;在客户端主要用于发起事务请求、提交事务、回滚事务请求等&#xff0c;用于跟 TC 进行通信的类&#xff0c;其中获取当前接口的实现类是通过 TransactionManagerHolder 进行获取&#xff0c;然后通过 SPI 接口获取…

【没用的小知识又增加了--电机】

一些乱七八糟的笔记.. 怎么计算电流环带宽 https://www.csdn.net/tags/MtTaMgysMTgwMTQwLWJsb2cO0O0O.html 理解电机控制系统中的带宽问题 - 知乎 电机控制电路程序带宽和硬件带宽的关系&#xff0c;应该如何设计相关参数&#xff1f; - 知乎 怎么理解Clarke和park变换&am…

[附源码]java毕业设计西柚网购物系统

项目运行 环境配置&#xff1a; Jdk1.8 Tomcat7.0 Mysql HBuilderX&#xff08;Webstorm也行&#xff09; Eclispe&#xff08;IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持&#xff09;。 项目技术&#xff1a; SSM mybatis Maven Vue 等等组成&#xff0c;B/S模式 M…

论文阅读【5】Attention Is All You Need

1.概述 1.1 论文相关 题目&#xff1a;注意你所有需要的&#xff08;Attention Is All You Need&#xff09;发表时间&#xff1a;2017出版&#xff1a;NIPS原文地址&#xff1a;经典模型了&#xff0c;网上一搜就能搜索到代码&#xff1a; 1.2 动机 因为循环神经网络通常是…

Poison Ink: Robust and Invisible Backdoor Attack 论文笔记

1. 论文信息 论文名称Poison Ink: Robust and Invisible Backdoor Attack作者Jie Zhang&#xff08;中国科学技术大学&#xff09;会议/出版社IEEE Transactions on Image Processingpdf&#x1f4c4;在线pdf 2. introduction 文章提出了一种新的攻击方式称为“Poison Ink”…

CRF条件随机场

文章目录定义转移概率 & 发射概率损失函数单条路径的求解viterbi解码贪婪算法维特比算法参考解读定义 CRF&#xff1a;condition random field 解决序列预测问题。比如TTS的前端分词&#xff0c;实体命名识别等。 转移概率 & 发射概率 发射分数&#xff1a;将输入预测…

PPT 最后一页写什么结束语既得体又能瞬间提升格调?

谢邀&#xff01;我只分享一个现下最流行的方法&#xff0c;绝对让尾页逼格满满&#xff01;罗永浩雷军都在用的「金句法」。 提到这份方法&#xff0c;你可能会觉得很陌生&#xff0c;但你一定见过这样的页面&#xff1a; 这样的页面还有很多&#xff0c;多是以一句话收尾&…

LeetCode刷题(python版)——Topic81. 搜索旋转排序数组 II

一、题设 已知存在一个按非降序排列的整数数组 nums &#xff0c;数组中的值不必互不相同。 在传递给函数之前&#xff0c;nums 在预先未知的某个下标 k&#xff08;0 < k < nums.length&#xff09;上进行了 旋转 &#xff0c;使数组变为 [nums[k], nums[k1], ..., nu…

简单网络管理协议SNMP

SNMP一、 网络管理基本概念网络管理主要构件管理站被管设备网络管理协议SNMP&#xff08;简单网络管理协议&#xff09;协议组成二、管理信息结构SMI功能被管对象的命名被管对象的数据类型编码方法三、管理信息库MIB定义要点四、SNMP基于UDP服务两种基本管理功能机制探询trap五…

期末复习 C语言再学习

作者&#xff1a;小萌新 专栏&#xff1a;期末复习 作者简介&#xff1a; 大二学生 希望能和大家一起进步 本篇博客介绍&#xff1a; 考试周临近 没时间学新知识了 回顾C语言知识 一. 常量和字符串 1. 常量的四种表示方式 字面常量 这个很简单 字面意义上的常量就是了 比如…

跳表和散列表

一、跳表 复杂度&#xff1a;O(logn)&#xff1b; 跳表的更新&#xff1a;插入数据时&#xff0c;可以选择将这个数据插入到部分索引中&#xff0c;可以选择一个随机函数&#xff0c;产生随机数K&#xff0c;边将索引添加到第一到第K级索引中。 Redis为何选择跳表来实现有序集…

冯·诺依曼体系概括总结

文章目录我们常见的计算机&#xff0c;如笔记本。我们不常见的计算机&#xff0c;如服务器&#xff0c;大部分都遵守冯诺依曼体系。 截至目前&#xff0c;我们所认识的计算机&#xff0c;都是由一个个的硬件组件组成 输入单元&#xff1a;包括键盘, 鼠标&#xff0c;扫描仪, …

Java笔记(JUnit、反射、注解)

一、JUnit单元测试 1. JUnit的介绍 JUnit是一个Java语言的单元测试工具。有了它我们在开发阶段就可以对自己编写的功能模块进行单元测试&#xff08;就是一块一块去测试&#xff09;&#xff0c;看看是否达到具体预期&#xff08;这样小Bug我们自己就能解决&#xff09;。 黑盒…

敏感词检测库ToolGood.Words中 WordsHelper类使用简介

C#开源敏感词检测库ToolGood.Words中的类WordsHelper为文本辅助操作类&#xff0c;支持繁体简体互换、全角半角互换、数字转成中文大写、拼音操作等功能&#xff0c;本文对照参考文献1&#xff0c;对该类的用法进行简要介绍。   WordsHelper类中主要的辅助函数如下表所示&…

基于SVM的航空发动机故障诊断系统设计

目录 第1关&#xff1a;准备实验数据 任务描述&#xff1a; 相关知识&#xff1a; 一、获取数据&#xff1a; 二、读取数据集&#xff1a; 三、如何找出对应的数据列&#xff1a; 编程要求&#xff1a; 测试说明&#xff1a; 第二关&#xff1a;数据预处理 任务描述&…