diff options
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/standard/tests/image/getimagesizefromstring1.phpt | 49 | ||||
| -rw-r--r-- | ext/standard/tests/image/test.gif | bin | 0 -> 2523 bytes |
2 files changed, 49 insertions, 0 deletions
diff --git a/ext/standard/tests/image/getimagesizefromstring1.phpt b/ext/standard/tests/image/getimagesizefromstring1.phpt new file mode 100644 index 0000000000..df75be518b --- /dev/null +++ b/ext/standard/tests/image/getimagesizefromstring1.phpt @@ -0,0 +1,49 @@ +--TEST-- +Compare getimagesize and getimagesizefromstring +--FILE-- +<?PHP +$img = __DIR__ . '/test.gif'; + +$i1 = getimagesize($img); + +$data = file_get_contents($img); + +$i2 = getimagesizefromstring($data); + +var_dump($i1); +var_dump($i2); +?> +--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 Binary files differnew file mode 100644 index 0000000000..f352c7308f --- /dev/null +++ b/ext/standard/tests/image/test.gif |
