import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-image / getimagesizefromstring1.php
blob6e06bfa710dc0a1182d930b371049adb565be533
1 <?PHP
2 $img = __DIR__ . '/test.gif';
4 $i1 = getimagesize($img);
6 $data = file_get_contents($img);
8 $i2 = getimagesizefromstring($data);
10 var_dump($i1);
11 var_dump($i2);