0

我正在为我的脚本使用 Uploadify。

主页面:

<?php

session_start();

var_dump($_SESSION);
$uploaded_files = $_SESSION['uploaded_files'];

?>

//Uploadify, HTML forms and more (not related, No PHP in this section)

上传.php:

<?php

session_start();

require_once('includes/functions.php');

// Define a destination
$targetFolder = 'uploads/temp'; // Relative to the root

if (!empty($_FILES)) {
    $fileParts = pathinfo($_FILES['Filedata']['name']);
    $file_hash = GenRndStr(20) . '.' . $fileParts['extension'];
    $tempFile = $_FILES['Filedata']['tmp_name'];
    $targetPath = $targetFolder;
    $targetFile = rtrim($targetPath,'/') . '/' . $file_hash;

    // Validate the file type
    $fileTypes = array(); // File extensions

    move_uploaded_file($tempFile, $targetFile);
    $_SESSION['uploaded_files'][] = $file_hash;
    echo '1';
}

?>

我确定它会到达该$_SESSION['uploaded_files'][] = $file_hash;部分,因为实际文件已上传到目录。我的问题是var_dumpof$_SESSION['uploaded_files']返回null。

这些文件位于同一目录级别。

提前致谢。

4

1 回答 1

0

我找到了解决方案。问题是 Uploadify 的 flash 版本被视为服务器的不同客户端,因此服务器为其创建一个新的会话 id。

我关注了这个话题:http ://www.uploadify.com/forum/#/discussion/43 希望它会帮助别人。

于 2012-07-22T10:07:32.807 回答