时间:2021-07-01 10:21:17 帮助过:4人阅读
本人初学uploadify上传,使用给的demo无法将文件上传到uploads文件夹内
请各位大神给予指导
index.php
- <code><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>UploadiFive Test</title><style type="text/css">body { font: 13px Arial, Helvetica, Sans-serif;}</style> <h2>Uploadify Demo</h2> upload </code>
uploadify.php 上传处理文件
/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License http://www.opensource.org/licenses/mit-license.php
*/
// Define a destination
$targetFolder = '/uploads'; // Relative to the root
$verifyToken = md5('unique_salt' . $_POST['timestamp']);
if (!empty($_FILES) && $_POST['token'] == $verifyToken) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;
$targetFile = rtrim($targetPath,'/') . '/' . $_FILES['Filedata']['name'];
- <code>// Validate the file type$fileTypes = array('jpg','jpeg','gif','png'); // File extensions$fileParts = pathinfo($_FILES['Filedata']['name']);if (in_array($fileParts['extension'],$fileTypes)) { move_uploaded_file($tempFile,$targetFile); echo '1';} else { echo 'Invalid file type.';}</code>
}
?>
- <code></code>