| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public static function getSize($image) |
||
| 14 | {
|
||
| 15 | $ch = curl_init(); |
||
| 16 | curl_setopt($ch, CURLOPT_URL, $image); |
||
| 17 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); |
||
| 18 | curl_setopt($ch, CURLOPT_HEADER, TRUE); |
||
| 19 | curl_setopt($ch, CURLOPT_NOBODY, TRUE); |
||
| 20 | |||
| 21 | curl_exec($ch); |
||
| 22 | $size = curl_getinfo($ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD); |
||
| 23 | curl_close($ch); |
||
| 24 | |||
| 25 | return $size; |
||
| 26 | } |
||
| 27 | } |
||
| 28 |