略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: RowResult::getWarnings

2024-05-08

RowResult::getWarnings

(No version information available, might only be in Git)

RowResult::getWarningsGet warnings from last operation

说明

public mysql_xdevapi\RowResult::getWarnings(): array

Retrieve warnings from the last RowResult operation.

参数

此函数没有参数。

返回值

An array of Warning objects from the last operation. Each object defines an error 'message', error 'level', and error 'code'. An empty array is returned if no errors are present.

范例

示例 #1 mysql_xdevapi\RowResult::getWarnings() example

<?php
$session 
mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$session->sql("CREATE DATABASE foo")->execute();
$session->sql("CREATE TABLE foo.test_table(x int)")->execute();

$schema $session->getSchema("foo");
$table  $schema->getTable("test_table");

$table->insert(['x'])->values([1])->values([2])->execute();

$res $table->select(['x/0 as bad_x'])->execute();
$warnings $res->getWarnings();

print_r($warnings);
?>

以上例程的输出类似于:

Array
(
    [0] => mysql_xdevapi\Warning Object
        (
            [message] => Division by 0
            [level] => 2
            [code] => 1365
        )
    [1] => mysql_xdevapi\Warning Object
        (
            [message] => Division by 0
            [level] => 2
            [code] => 1365
        )
)
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/mysql-xdevapi-rowresult.getwarnings.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3