mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
--TEST--
|
|
Bug #73462 (Persistent connections don't set $connect_errno)
|
|
--EXTENSIONS--
|
|
mysqli
|
|
--SKIPIF--
|
|
<?php
|
|
require_once 'skipifconnectfailure.inc';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require_once 'connect.inc';
|
|
|
|
/* Initial persistent connection */
|
|
$mysql_1 = new mysqli('p:'.$host, $user, $passwd, $db, $port);
|
|
$result = $mysql_1->query("SELECT CONNECTION_ID()");
|
|
$c1 = $result->fetch_row();
|
|
$result->free();
|
|
$mysql_1->close();
|
|
|
|
/* Failed connection to invalid host */
|
|
$mysql_2 = @new mysqli(' !!! invalid !!! ', $user, $passwd, $db, $port);
|
|
try {
|
|
$mysql_2->close();
|
|
} catch (Error $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
|
|
/* Re-use persistent connection */
|
|
$mysql_3 = new mysqli('p:'.$host, $user, $passwd, $db, $port);
|
|
$error = mysqli_connect_errno();
|
|
$result = $mysql_3->query("SELECT CONNECTION_ID()");
|
|
$c3 = $result->fetch_row();
|
|
$result->free();
|
|
$mysql_3->close();
|
|
|
|
if (end($c1) !== end($c3))
|
|
printf("[001] Expected '%d' got '%d'.\n", end($c1), end($c3));
|
|
|
|
if ($error !== 0)
|
|
printf("[002] Expected '0' got '%d'.\n", $error);
|
|
|
|
print "done!";
|
|
?>
|
|
--EXPECT--
|
|
mysqli object is already closed
|
|
done!
|