MysqlndUhConnection::getWarningCount

(PECL mysqlnd-uh >= 1.0.0-alpha)

MysqlndUhConnection::getWarningCountReturns the number of warnings from the last query for the given link

说明

public MysqlndUhConnection::getWarningCount ( mysqlnd_connection $connection ) : int

Returns the number of warnings from the last query for the given link.

参数

connection

Mysqlnd connection handle. Do not modify!

返回值

Number of warnings.

范例

Example #1 MysqlndUhConnection::getWarningCount() example

<?php
class proxy extends MysqlndUhConnection {
 public function 
getWarningCount($res) {
  
printf("%s(%s)\n"__METHOD__var_export(func_get_args(), true));
  
$ret parent::getWarningCount($res);
  
printf("%s returns %s\n"__METHOD__var_export($rettrue));
  return 
$ret;
 }
}
mysqlnd_uh_set_connection_proxy(new proxy());

$mysqli = new mysqli("localhost""root""""test");
var_dump($mysqli->warning_count);
?>

以上例程会输出:

proxy::getWarningCount(array (
  0 => NULL,
))
proxy::getWarningCount returns 0
int(0)

参见

相关文章
php ingres 函数 get the number of fields returned by the last queryphp maxdb 函数 returns the total number of rows changed deleted or inserted by the last executed statementphp maxdb 函数 returns the number of warnings from the last query for the given linkphp oci8 函数 returns the next row from a query as an associative arrayphp oci8 函数 returns the next row from a query as an objectphp oci8 函数 returns the next row from a query as a numeric arrayphp sqlsrv 函数 returns the number of rows modified by the last insert update or delete query executedphp tidy 函数 returns the number of tidy warnings encountered for specified documentphp mysql xdevapi docresult get warnings from last operationphp mysqli stmt returns a list of errors from the last statement executedphp mysqli returns the number of warnings from the last query for the given linkphp mysqlnduhconnection returns a string description of the last errorphp mysqlnduhconnection returns the number of columns for the most recent queryphp mysqlnduhconnection returns the auto generated id used in the last queryphp mysqlnduhconnection returns the number of warnings from the last query for the given linkphp mysqlnduhconnection check if there are any more query results from a multi queryphp mysqlnduhconnection transfers a result set from the last queryphp solrquery returns the maximum number of characters from a field when using the regex fragmenterphp swfsound returns a new swfsound object from given filephp ktaglib tag returns the track number from a id3 tag
关注编程学问公众号