The class mysqli_warning represents a MYSQL warning. class mysqli_warning { /* Propiedades */ public $message; public $sqlstate; public $errno; /* Métodos */ public next(): void } Properties $message – message that gives the warning sqlstate – SQL state (SQLSTATE is a code which identifies SQL error conditions) errno – error number Methods __construct The constructor is private and therefore will not allow direct instantiation of a class. private mysqli_warning::__construct() next Fetches the next warning. public mysqli_warning::next(): […]
read more