summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/035.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/035.phpt')
-rw-r--r--ext/mysqli/tests/035.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/mysqli/tests/035.phpt b/ext/mysqli/tests/035.phpt
deleted file mode 100644
index 34af7c0a56..0000000000
--- a/ext/mysqli/tests/035.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-function test: mysqli_get_server_info
---FILE--
-<?php
- $user = "root";
- $passwd = "";
-
-
- /*** test mysqli_connect 127.0.0.1 ***/
- $link = mysqli_connect("localhost", $user, $passwd);
-
- $sinfo = substr(mysqli_get_server_info($link),0,1);
-
- var_dump($sinfo);
-
- mysqli_close($link);
-?>
---EXPECT--
-string(1) "4"