1 2 3 4 5 6 7 8 |
list($width, $height, $type) = getimagesize($path); //エラーチェック付き $data = getimagesize($source); if (empty($data) || !is_array($data)) { return 'Image is invalid'; } list($width, $height, $type) = $data; |
参考サイト
PHP: getimagesize – Manual
http://php.net/manual/ja/function.getimagesize.php