php-src/ext/mysqli/tests/mysqli_error_unicode.phpt
Nikita Popov e3e67b721f Reindent more mysqli tests
Due to a bug in the tidy script, most tests did not actually get
reindented...
2020-11-25 16:07:16 +01:00

41 lines
1.1 KiB
PHP
Raw 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()
--SKIPIF--
<?php
require_once('skipif.inc');
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!