diff options
author | Georg Richter <georg@php.net> | 2004-02-17 07:45:15 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2004-02-17 07:45:15 +0000 |
commit | f7ca7c469ae746327596475b6e47aae40d60e2b5 (patch) | |
tree | e0a98986ebc1684675047b24ad8a0f5710813d7e | |
parent | cdad10a21a1207fa82bd2ab2523b9b15c58b02f2 (diff) | |
download | php-git-f7ca7c469ae746327596475b6e47aae40d60e2b5.tar.gz |
changed output
-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) |