Answers for "php getimagesize string"

PHP
0

getimagesize php

<?php
list($width, $height, $type, $attr) = getimagesize("img/flag.jpg");
echo "<img src="img/flag.jpg" $attr alt="getimagesize() example" />";
?>
Posted by: Guest on March-22-2021
0

getimagesize php

<?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");

?>
Posted by: Guest on March-22-2021

Browse Popular Code Answers by Language