import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-image / getimagesize_variation4.php
blob77a24cd348c461445e12ee693caaca60eedc8583
1 <?php
2 /* Prototype : array getimagesize(string imagefile [, array info])
3 * Description: Get the size of an image as 4-element array
4 * Source code: ext/standard/image.c
5 */
7 echo "*** Testing getimagesize() : variation ***\n";
9 var_dump( getimagesize(dirname(__FILE__)."/test13pix.swf", $info) );
10 var_dump( $info );
12 ===DONE===