mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.2'
* PHP-8.2: Fix failing test on nightly
This commit is contained in:
commit
ee82c94208
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ $mysql = mysqli_init();
|
|||
mysqli_ssl_set($mysql, 'x509.key', 'x509.pem', 'x509.ca', null, null);
|
||||
try {
|
||||
// There should be no warning here, only exception
|
||||
mysqli_real_connect($mysql, '127.0.0.1:3306', 'username', 'password', null, null, null, MYSQLI_CLIENT_SSL);
|
||||
mysqli_real_connect($mysql, $host, $user, $passwd, null, $port, null, MYSQLI_CLIENT_SSL);
|
||||
} catch (mysqli_sql_exception $e) {
|
||||
echo $e->getMessage()."\n";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue