]> granicus.if.org Git - php/commitdiff
changed output
authorGeorg Richter <georg@php.net>
Tue, 17 Feb 2004 07:45:15 +0000 (07:45 +0000)
committerGeorg Richter <georg@php.net>
Tue, 17 Feb 2004 07:45:15 +0000 (07:45 +0000)
ext/mysqli/tests/027.phpt

index ae3657487d4ba1cd8b1bb40e94295d82559f2bb1..347a8513af91e96b647a23b87681b53defbeb332 100644 (file)
@@ -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)