(PECL mysqlnd-uh >= 1.0.0-alpha)
MysqlndUhConnection::getErrorString — Devuelve una descripción del último error
$connection
) : stringDevuelve una descripción del último error.
connection
Gestor de conexión de mysqlnd. ¡No modificar!
Un string con el error de la llamada más reciente a una función.
MysqlndUhConnection::getErrorString() no solo se ejecuta después de invocar a una llamada de la API del espacio de usuario, la cual hace referencia a ella directamente, sino que también es llamda internamente.
Ejemplo #1 Ejemplo de MysqlndUhConnection::getErrorString()
<?php
class proxy extends MysqlndUhConnection {
public function getErrorString($res) {
printf("%s(%s)\n", __METHOD__, var_export(func_get_args(), true));
$ret = parent::getErrorString($res);
printf("%s returns %s\n", __METHOD__, var_export($ret, true));
return $ret;
}
}
mysqlnd_uh_set_connection_proxy(new proxy());
printf("connect...\n");
$mysqli = new mysqli("localhost", "root", "", "test");
printf("query...\n");
$mysqli->query("WILL_I_EVER_LEARN_SQL?");
printf("errno...\n");
var_dump($mysqli->error);
printf("close...\n");
$mysqli->close();
?>
El resultado del ejemplo sería:
connect... proxy::getErrorString(array ( 0 => NULL, )) proxy::getErrorString returns '' query... errno... proxy::getErrorString(array ( 0 => NULL, )) proxy::getErrorString returns 'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WILL_I_EVER_LEARN_SQL?\' at line 1' string(168) "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WILL_I_EVER_LEARN_SQL?' at line 1" close...