We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa845a8 commit acfa825Copy full SHA for acfa825
ext/mysqli/tests/mysqli_constants.phpt
@@ -3,15 +3,13 @@ Constants exported by ext/mysqli
3
--SKIPIF--
4
<?php
5
require_once 'skipif.inc';
6
-require_once 'skipifconnectfailure.inc';
7
?>
8
--INI--
9
mysqli.allow_local_infile=1
10
--FILE--
11
12
-require "connect.inc";
13
14
-$php_version = (int)str_replace('.', '', PHP_VERSION);
+$IS_MYSQLND = stristr(mysqli_get_client_info(), "mysqlnd");
15
$constants = get_defined_constants(true);
16
sort($constants);
17
@@ -212,8 +210,5 @@ if (!empty($expected_constants)) {
212
210
printf("Dumping list of missing constants\n");
213
211
var_dump($expected_constants);
214
}
215
-
216
-print "done!";
217
218
--EXPECT--
219
-done!
0 commit comments