georg Sun Feb 16 16:19:33 2003 EDT
Modified files:
/php4/ext/mysqli/tests 042.phpt 047.phpt
Log:
fixed output
Index: php4/ext/mysqli/tests/042.phpt
diff -u php4/ext/mysqli/tests/042.phpt:1.1 php4/ext/mysqli/tests/042.phpt:1.2
--- php4/ext/mysqli/tests/042.phpt:1.1 Wed Feb 12 20:23:28 2003
+++ php4/ext/mysqli/tests/042.phpt Sun Feb 16 16:19:32 2003
@@ -43,7 +43,7 @@
mysqli_close($link);
?>
--EXPECT--
-object()(7) {
+object(stdClass)(7) {
["c1"]=>
string(1) "0"
["c2"]=>
Index: php4/ext/mysqli/tests/047.phpt
diff -u php4/ext/mysqli/tests/047.phpt:1.1 php4/ext/mysqli/tests/047.phpt:1.2
--- php4/ext/mysqli/tests/047.phpt:1.1 Sun Feb 16 08:48:00 2003
+++ php4/ext/mysqli/tests/047.phpt Sun Feb 16 16:19:32 2003
@@ -19,17 +19,17 @@
$result = mysqli_prepare_result($stmt);
$fields = mysqli_fetch_fields($result);
- var_dump($fields);
-
mysqli_free_result($result);
+ var_dump($fields);
+
mysqli_stmt_close($stmt);
mysqli_close($link);
?>
--EXPECT--
array(2) {
[0]=>
- object()(9) {
+ object(stdClass)(9) {
["name"]=>
string(3) "foo"
["orgname"]=>
@@ -50,7 +50,7 @@
int(0)
}
[1]=>
- object()(9) {
+ object(stdClass)(9) {
["name"]=>
string(3) "bar"
["orgname"]=>
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php