/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
ext
/
mysqli
/
tests
/
File Upload :
llllll
Current File: //usr/local/lsws/phpbuild/php-8.0.7/ext/mysqli/tests/bug55283.phpt
--TEST-- Bug #55283 (SSL options set by mysqli_ssl_set ignored for MySQLi persistent connections) --SKIPIF-- <?php require_once('skipif.inc'); require_once('skipifconnectfailure.inc'); require_once("connect.inc"); if (!defined('MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT')) die("skip Requires MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT"); if ($IS_MYSQLND && !extension_loaded("openssl")) die("skip PHP streams lack support for SSL. mysqli is compiled to use mysqlnd which uses PHP streams in turn."); if (!($link = @my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))) die(sprintf("skip Connect failed, [%d] %s", mysqli_connect_errno(), mysqli_connect_error())); if (false === strpos($link->host_info, 'TCP/IP')) die(sprintf("skip SSL only supported on TCP/IP")); $row = NULL; if ($res = $link->query('SHOW VARIABLES LIKE "have_ssl"')) { $row = $res->fetch_row(); } else { if ($link->errno == 1064 && ($res = $link->query("SHOW VARIABLES"))) { while ($row = $res->fetch_row()) if ($row[0] == 'have_ssl') break; } else { die(sprintf("skip Failed to test for MySQL SSL support, [%d] %s", $link->errno, $link->error)); } } if (empty($row)) die(sprintf("skip Failed to test for MySQL SSL support, [%d] %s", $link->errno, $link->error)); if (($row[1] == 'NO') || ($row[1] == 'DISABLED')) die(sprintf("skip MySQL has no SSL support, [%d] %s", $link->errno, $link->error)); $link->close(); ?> --FILE-- <?php require_once "connect.inc"; $db1 = new mysqli(); $flags = MYSQLI_CLIENT_SSL | MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT; $link = mysqli_init(); mysqli_ssl_set($link, null, null, null, null, "AES256-SHA"); if (my_mysqli_real_connect($link, 'p:' . $host, $user, $passwd, $db, $port, null, $flags)) { $r = $link->query("SHOW STATUS LIKE 'Ssl_cipher'"); var_dump($r->fetch_row()); } /* non-persistent connection */ $link2 = mysqli_init(); mysqli_ssl_set($link2, null, null, null, null, "AES256-SHA"); if (my_mysqli_real_connect($link2, $host, $user, $passwd, $db, $port, null, $flags)) { $r2 = $link2->query("SHOW STATUS LIKE 'Ssl_cipher'"); var_dump($r2->fetch_row()); } echo "done\n"; ?> --EXPECTF-- array(2) { [0]=> string(10) "Ssl_cipher" [1]=> string(%d) "%rAES256-SHA|TLS_AES_256_GCM_SHA384%r" } array(2) { [0]=> string(10) "Ssl_cipher" [1]=> string(%d) "%rAES256-SHA|TLS_AES_256_GCM_SHA384%r" } done
Copyright ©2k19 -
Hexid
|
Tex7ure