CakeFest 2024: The Official CakePHP Conference

The mysqli_warning class

(PHP 5, PHP 7, PHP 8)

Giriş

Represents a MySQL warning.

Sınıf Sözdizimi

final class mysqli_warning {
/* Özellikler */
public string $message;
public int $errno;
/* Yöntemler */
private __construct()
public next(): bool
}

Özellikler

message

Message string

sqlstate

SQL state

errno

Error number

İçindekiler

add a note

User Contributed Notes 1 note

up
0
hlopetz at gmail com
11 years ago
mysqli_warning::__construct() seems protected according reflection:

== Class: mysqli_warning
Could not construct class mysqli_warning
Message: Access to non-public constructor of class mysqli_warning
To Top