上传php文件的相关步骤:
新建一个表单,用于上传文件的。
<!doctype html><html><head><meta charset="utf-8"/><title>上传文件</title></head><body><form action="upload_file.php" method="post" enctype="multipart/form-data"><label for="file">filename</label><input type="file" name="file" id="file"></br><input type="submit" value="提交"></br></form></body></html>
相关推荐:《php入门教程》
新建一个用于处理文件的php文件,先设置字符集。
如果上传的文件有错误就显示错误。
如果没有错误,就显示文件的内容,首先显示文件的名称。
显示文件的大小。
echo "type:".$_files['file']['type']."<br/>";
显示文件的大小和临时存储的位置。
在浏览器进行测试。
完整代码如下:
<?phpheader("content-type:text/html;charset=utf-8");if($_files['file']['error']>0){echo $_files['file']['error']."<br/>";}else{echo "uoload:".$_files['file']['name']."<br/>";echo "type:".$_files['file']['type']."<br/>";echo "size:".$_files['file']['size']."<br/>";echo "store in:".$_files['file']['tmp_name']."<br/>";}?>
以上就是怎么上传php文件的详细内容。