ユーザーが特定のサイズとタイプの画像をアップロードするフォーミュラがあります。画像を選択して送信ボタンをクリックすると、警告が表示されます。
警告: getimagesize() [function.getimagesize]: 5 行目の xxx.php でファイル名を空にすることはできません
この問題では、次元と型をチェックするコードは必要ありません。
<!-- language: lang-php -->
<?php
if (isset($_POST["submit"])) {
list($width, $height, $type, $attr) = getimagesize($_FILES["image"]["name"]);
} else { ?>
<form action="#" method="post" enctype="multipart/form-data">
<input type="file" name="image" />
<input type="submit" name="submit" />
</form>
<?php } ?>