PHP 8.5.0 Alpha 2 available for testing

Voting

: max(five, one)?
(Example: nine)

The Note You're Voting On

redcore at gmail dot com
17 years ago
It's always good to check out an image's dimensions while attempting to upload to your server or database...especially if it's going to be displayed on a page that doesn't accomodate images beyond a particular size.

<?php

$tmpName
= $_FILES['userfile']['tmp_name'];

list(
$width, $height, $type, $attr) = getimagesize($tmpName);

if(
$width>275 || $height>275)
{
die(
"exceeded image dimension limits.");
}

?>

<< Back to user notes page

To Top