Skip to content

Instantly share code, notes, and snippets.

@kamatari
Created September 27, 2014 02:37
Show Gist options
  • Save kamatari/cf1d4142335a54400315 to your computer and use it in GitHub Desktop.
Save kamatari/cf1d4142335a54400315 to your computer and use it in GitHub Desktop.
<?php
$size = getimagesize('http://free-photos-ls01.gatag.net/images/lgf01a201304271400.jpg');
var_export($size);
/* output
array (
0 => 1024,
1 => 768,
2 => 2,
3 => 'width="1024" height="768"',
'bits' => 8,
'channels' => 3,
'mime' => 'image/jpeg',
)
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment