summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/027.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/027.phpt')
-rw-r--r--ext/mysqli/tests/027.phpt21
1 files changed, 0 insertions, 21 deletions
diff --git a/ext/mysqli/tests/027.phpt b/ext/mysqli/tests/027.phpt
deleted file mode 100644
index ae3657487d..0000000000
--- a/ext/mysqli/tests/027.phpt
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-function test: mysqli_stat
---FILE--
-<?php
- $user = "root";
- $passwd = "";
-
-
- /*** test mysqli_connect 127.0.0.1 ***/
- $link = mysqli_connect("localhost", $user, $passwd);
-
- $status = mysqli_stat($link);
-
- $x = explode(' ', $status);
-
- var_dump(count($x));
-
- mysqli_close($link);
-?>
---EXPECT--
-int(10)