mirror of
https://github.com/php/php-src.git
synced 2026-04-24 00:18:23 +02:00
b7091aaf01
Per https://wiki.php.net/rfc/mysql_deprecation, connecting to a MySQL database via ext/mysql now generates an E_DEPRECATED error. This commit includes the minimal EXPECTF updates required for the test suite to pass: it may be preferable to refactor some of the tests to suppress deprecation errors in situations where no other error is expected from mysql_[p]connect(), but I'm not enough of a MySQL expert to want to get my hands that dirty in a long standing test suite.
37 lines
916 B
PHP
37 lines
916 B
PHP
--TEST--
|
|
mysql connect
|
|
--SKIPIF--
|
|
<?php
|
|
require_once('skipif.inc');
|
|
require_once('skipifconnectfailure.inc');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require_once('connect.inc');
|
|
$test = '';
|
|
|
|
if ($socket)
|
|
$host = sprintf("%s:%s", $host, $socket);
|
|
else if ($port)
|
|
$host = sprintf("%s:%s", $host, $port);
|
|
|
|
/*** test mysql_connect localhost ***/
|
|
$db = mysql_connect($host, $user, $passwd);
|
|
$test .= ($db) ? '1' : '0';
|
|
mysql_close($db);
|
|
|
|
/*** test mysql_connect localhost:port ***/
|
|
$db = mysql_connect($host, $user, $passwd, true);
|
|
$test .= ($db) ? '1' : '0';
|
|
mysql_close($db);
|
|
|
|
var_dump($test);
|
|
print "done!";
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
|
|
|
|
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
|
|
%unicode|string%(2) "11"
|
|
done!
|