1 Star 0 Fork 103

ledaishu/VvvebJs

forked from Gitee 极速下载/VvvebJs 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
upload.php 345 Bytes
Copy Edit Raw Blame History
<?php
//This script is used by image upload input to save the imge on the server and return the image url to be set as image src attribute.
define('UPLOAD_FOLDER', __DIR__ . '/');
define('UPLOAD_PATH', '/');
move_uploaded_file($_FILES['file']['tmp_name'], UPLOAD_FOLDER . $_FILES['file']['name']);
echo UPLOAD_PATH . $_FILES['file']['name'];
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/ledaishu/VvvebJs.git
git@gitee.com:ledaishu/VvvebJs.git
ledaishu
VvvebJs
VvvebJs
master

Search