Quick actions

cmd+k|ctrl+k

Navigation

Languages

test_getimagesize

Snippet info

Language

Php

Visibility

public

Author

fenghestudio

Created

2019-09-16T04:33:15Z

Updated

2019-09-16T04:33:15Z

<?php

$size = getimagesize("http://www.example.com/gifs/logo.gif");

// if the file name has space in it, encode it properly
$size = getimagesize("http://www.example.com/gifs/lo%20go.gif");

?>
INFO