mysqli_warning クラス

(PHP 5, PHP 7, PHP 8)

はじめに

MySQL の警告を表します。

クラス概要

final class mysqli_warning {
/* プロパティ */
public string $message;
public int $errno;
/* メソッド */
private __construct()
public next(): bool
}

プロパティ

message

メッセージ文字列

sqlstate

SQL state

errno

エラー番号

目次

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