Files
php-src/ext/mysqli/tests/mysqli_error_unicode.phpt

43 lines
1.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--TEST--
mysqli_error()
--EXTENSIONS--
mysqli
--SKIPIF--
<?php
require_once 'skipifconnectfailure.inc';
?>
--FILE--
<?php
require_once 'connect.inc';
if (!$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
$host, $user, $db, $port, $socket);
}
mysqli_query($link, "set names utf8");
$tmp = mysqli_error($link);
if (!is_string($tmp) || ('' !== $tmp))
printf("[004] Expecting string/empty, got %s/%s. [%d] %s\n", gettype($tmp), $tmp, mysqli_errno($link), mysqli_error($link));
mysqli_query($link, 'SELECT * FROM нямаакавааблица');
$tmp = mysqli_error($link);
var_dump(str_replace($db.".", "", $tmp));
mysqli_close($link);
try {
mysqli_error($link);
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
print "done!";
?>
--EXPECTF--
string(%d) "Table 'нямаакавааблица' doesn't exist"
mysqli object is already closed
done!