Home  >  Article  >  Backend Development  >  PHP上传文件小例子

PHP上传文件小例子

WBOY
WBOYOriginal
2016-06-23 13:39:46729browse

<?phpecho $_FILES['hello']['error'];echo "start".$_FILES['hello']['type'];echo $_FILES['hello']['size'];echo $_FILES['hello']['tmp_name']."end";move_uploaded_file($_FILES['hello']['tmp_name'], "./windows.pdf");echo "finish!!";?><p><font color="red">hello</font></p><?php ?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn