我有一个正在运行的uploadify脚本,基本设置。当我将图像的目标文件夹硬编码到其中时工作正常uploadify.php
- 现在我想让该文件夹动态化。我该怎么做呢?
我有一个 PHP 变量$uploadify_path
,其中包含我想要的文件夹的路径。我已经在uploadify.php 和check_exists.php 中切换了我的硬编码$targetPath = path/to/directory
,$targetPath = $uploadify_path
但它不起作用。文件上传动画运行,表示已完成,但目录仍为空。该文件也没有隐藏在其他地方。
我看到 Javascript 中有一个选项可以指定一个文件夹。我也试过这个,但没有用。
如果有人可以教我如何将这个可变目标传递给uploadify,我将不胜感激。
我包括我当前的检查代码(基本上是默认的):
Javascript
<script type="text/javascript">
$(function() {
$('#file_upload').uploadify({
'swf' : 'uploadify/uploadify.swf',
'uploader' : 'uploadify/uploadify.php',
// Put your options here
});
});
</script>
上传.php
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $uploadify_path; // Relative to the root
if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetFile = $targetPath . $_FILES['Filedata']['name'];
// 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.';
}
}