略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: mysqli_sql_exception

2024-05-03

mysqli异常类

(PHP 5, PHP 7, PHP 8)

简介

mysqli异常类

类摘要

class mysqli_sql_exception extends RuntimeException {
/* 属性 */
protected string $sqlstate;
/* 继承的属性 */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
}

属性

sqlstate

出现错误的sql状态

add a noteadd a note

User Contributed Notes 1 note

up
9
fibrizo dot raziel at gmail dot com
6 years ago
<?php  mysqli_report(MYSQLI_REPORT_STRICT) ?>
was not enough for me to enable exception throwing. I had to write this:
<?php mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT); ?>

官方地址:https://www.php.net/manual/en/class.mysqli-sql-exception.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3