From: Georg Richter Date: Sun, 16 Feb 2003 13:48:00 +0000 (+0000) Subject: test for mysqli_prepare_result X-Git-Tag: RELEASE_0_5~978 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c40eff35dae89f1f32376be48d652cf483a33140;p=php test for mysqli_prepare_result --- diff --git a/ext/mysqli/tests/047.phpt b/ext/mysqli/tests/047.phpt new file mode 100644 index 0000000000..8399166afc --- /dev/null +++ b/ext/mysqli/tests/047.phpt @@ -0,0 +1,73 @@ +--TEST-- +mysqli_prepare_result +--FILE-- + +--EXPECT-- +array(2) { + [0]=> + object()(9) { + ["name"]=> + string(3) "foo" + ["orgname"]=> + string(3) "foo" + ["table"]=> + string(13) "test_affected" + ["orgtable"]=> + string(13) "test_affected" + ["def"]=> + string(0) "" + ["max_length"]=> + int(0) + ["flags"]=> + int(32768) + ["type"]=> + int(3) + ["decimals"]=> + int(0) + } + [1]=> + object()(9) { + ["name"]=> + string(3) "bar" + ["orgname"]=> + string(3) "bar" + ["table"]=> + string(13) "test_affected" + ["orgtable"]=> + string(13) "test_affected" + ["def"]=> + string(0) "" + ["max_length"]=> + int(0) + ["flags"]=> + int(0) + ["type"]=> + int(253) + ["decimals"]=> + int(0) + } +}