summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Richter <georg@php.net>2004-02-17 07:45:15 +0000
committerGeorg Richter <georg@php.net>2004-02-17 07:45:15 +0000
commitf7ca7c469ae746327596475b6e47aae40d60e2b5 (patch)
treee0a98986ebc1684675047b24ad8a0f5710813d7e
parentcdad10a21a1207fa82bd2ab2523b9b15c58b02f2 (diff)
downloadphp-git-f7ca7c469ae746327596475b6e47aae40d60e2b5.tar.gz
changed output
-rw-r--r--ext/mysqli/tests/027.phpt5
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/mysqli/tests/027.phpt b/ext/mysqli/tests/027.phpt
index ae3657487d..347a8513af 100644
--- a/ext/mysqli/tests/027.phpt
+++ b/ext/mysqli/tests/027.phpt
@@ -11,11 +11,10 @@ function test: mysqli_stat
$status = mysqli_stat($link);
- $x = explode(' ', $status);
- var_dump(count($x));
+ var_dump(strlen($status) > 0);
mysqli_close($link);
?>
--EXPECT--
-int(10)
+bool(true)