diff options
-rw-r--r-- | ext/mysqli/tests/027.phpt | 5 |
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) |