PHP 8.3.4 Released!

Die Klasse mysqli_warning

(PHP 5, PHP 7, PHP 8)

Einführung

Stellt eine MySQL-Warnung dar.

Klassenbeschreibung

final class mysqli_warning {
/* Eigenschaften */
public string $message;
public int $errno;
/* Methoden */
private __construct()
public next(): bool
}

Eigenschaften

message

Die Nachrichten-Zeichenkette

sqlstate

Der SQL-Status

errno

Die Fehlernummer

Inhaltsverzeichnis

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