热搜:NVER node 开发 php

PHP上传文件小例子

2024-08-11 17:40:01
PHP上传文件小例子

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

hello

<?php ?>