diff --git a/ext/standard/tests/image/getimagesizefromstring1.phpt b/ext/standard/tests/image/getimagesizefromstring1.phpt new file mode 100644 index 00000000000..df75be518b6 --- /dev/null +++ b/ext/standard/tests/image/getimagesizefromstring1.phpt @@ -0,0 +1,49 @@ +--TEST-- +Compare getimagesize and getimagesizefromstring +--FILE-- + +--EXPECT-- +array(7) { + [0]=> + int(120) + [1]=> + int(67) + [2]=> + int(1) + [3]=> + string(23) "width="120" height="67"" + ["bits"]=> + int(7) + ["channels"]=> + int(3) + ["mime"]=> + string(9) "image/gif" +} +array(7) { + [0]=> + int(120) + [1]=> + int(67) + [2]=> + int(1) + [3]=> + string(23) "width="120" height="67"" + ["bits"]=> + int(7) + ["channels"]=> + int(3) + ["mime"]=> + string(9) "image/gif" +} + diff --git a/ext/standard/tests/image/test.gif b/ext/standard/tests/image/test.gif new file mode 100644 index 00000000000..f352c7308fe Binary files /dev/null and b/ext/standard/tests/image/test.gif differ