<?php if ($_FILES["file"]["error"] > 0) { echo "Error: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Stored in: " . $_FILES["file"]["tmp_name"]; } $s =new SaeStorage(); $i='PDF/'.$_FILES['file']['name']; //文件名 $domain='store'; //storage名 $s->upload( $domain , $i ,$_FILES['file']['tmp_name'] ); //上传 ?>
<html> <body> <form action="test3.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" /> <br /> <input type="submit" name="submit" value="Submit" /> </form> </body> </html>
위 내용은 콘텐츠 측면을 포함하여 SAE에서 파일을 업로드하고 다운로드하기 위한 저장소 사용을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.