PHP Velho Oeste 2024

The mysqli_warning class

(PHP 5, PHP 7)

소개

Represents a MySQL warning.

클래스 개요

mysqli_warning {
/* 프로퍼티 */
public $message ;
public $sqlstate ;
public $errno ;
/* 메소드 */
public __construct ( void )
public void next ( void )
}

프로퍼티

message

Message string

sqlstate

SQL state

errno

Error number

Table of Contents

add a note 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